diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2010-04-13 19:13:02 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2010-05-22 02:10:40 -0400 |
commit | 4018294b53d1dae026880e45f174c1cc63b5d435 (patch) | |
tree | 6db3538eaf91b653381720a6d92f4f15634a93d0 /drivers/of/platform.c | |
parent | 597b9d1e44e9ba69f2454a5318bbe7a6d5e6930a (diff) |
of: Remove duplicate fields from of_platform_driver
.name, .match_table and .owner are duplicated in both of_platform_driver
and device_driver. This patch is a removes the extra copies from struct
of_platform_driver and converts all users to the device_driver members.
This patch is a pretty mechanical change. The usage model doesn't change
and if any drivers have been missed, or if anything has been fixed up
incorrectly, then it will fail with a compile time error, and the fixup
will be trivial. This patch looks big and scary because it touches so
many files, but it should be pretty safe.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Acked-by: Sean MacLennan <smaclennan@pikatech.com>
Diffstat (limited to 'drivers/of/platform.c')
-rw-r--r-- | drivers/of/platform.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/of/platform.c b/drivers/of/platform.c index 9fd7f7d0a0d1..ba402c613ede 100644 --- a/drivers/of/platform.c +++ b/drivers/of/platform.c | |||
@@ -385,13 +385,6 @@ int of_bus_type_init(struct bus_type *bus, const char *name) | |||
385 | 385 | ||
386 | int of_register_driver(struct of_platform_driver *drv, struct bus_type *bus) | 386 | int of_register_driver(struct of_platform_driver *drv, struct bus_type *bus) |
387 | { | 387 | { |
388 | /* initialize common driver fields */ | ||
389 | if (!drv->driver.name) | ||
390 | drv->driver.name = drv->name; | ||
391 | if (!drv->driver.owner) | ||
392 | drv->driver.owner = drv->owner; | ||
393 | if (!drv->driver.of_match_table) | ||
394 | drv->driver.of_match_table = drv->match_table; | ||
395 | drv->driver.bus = bus; | 388 | drv->driver.bus = bus; |
396 | 389 | ||
397 | /* register with core */ | 390 | /* register with core */ |