aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sparc
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2007-09-27 13:21:43 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-13 21:53:11 -0700
commitfa7744dbb69c06b69c7449063c440d8a53df9e6c (patch)
treea81c6103c0eec3aa21d26c419fd072b6e96fd5a7 /arch/sparc
parent[SPARC32]: Add irqflags.h to sparc32 and use it from generic code. (diff)
downloadlinux-dev-fa7744dbb69c06b69c7449063c440d8a53df9e6c.tar.xz
linux-dev-fa7744dbb69c06b69c7449063c440d8a53df9e6c.zip
[SPARC/64]: Prepare to remove of_platform_driver name.
The name field of of_platform_driver is just copied into the included device_driver. By not overriding an already initialised device_driver name, we can convert the drivers over time to stop using the of_platform_driver name. Also we were not copying the owner field from of_platform_driver, so do the same with it. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc')
-rw-r--r--arch/sparc/kernel/of_device.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/sparc/kernel/of_device.c b/arch/sparc/kernel/of_device.c
index 36383f73d685..fb2caef79cec 100644
--- a/arch/sparc/kernel/of_device.c
+++ b/arch/sparc/kernel/of_device.c
@@ -588,7 +588,10 @@ __setup("of_debug=", of_debug);
int of_register_driver(struct of_platform_driver *drv, struct bus_type *bus)
{
/* initialize common driver fields */
- drv->driver.name = drv->name;
+ if (!drv->driver.name)
+ drv->driver.name = drv->name;
+ if (!drv->driver.owner)
+ drv->driver.owner = drv->owner;
drv->driver.bus = bus;
/* register with core */