diff options
author | Ben Dooks <ben-linux@fluff.org> | 2008-07-28 12:26:42 -0400 |
---|---|---|
committer | Samuel Ortiz <sameo@openedhand.com> | 2008-07-28 12:26:42 -0400 |
commit | 96ee41993b5b25ee0fbde2d4dcaac1f8c5ef5cc4 (patch) | |
tree | a0a505a06dd75d98885af9b45cebe3ff585410f4 | |
parent | c9272c4f9fbe2087beb3392f526dc5b19efaa56b (diff) |
mfd: Use to_platform_device instead of container_of
Convert mfd_remove_devices_fn() to use to_platform_device()
instead of doing container_of().
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Acked-by: Dmitry Baryshkov <dbaryshkov@gmail.com>
Signed-off-by: Samuel Ortiz <sameo@openedhand.com>
-rw-r--r-- | drivers/mfd/mfd-core.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mfd/mfd-core.c b/drivers/mfd/mfd-core.c index 0454be4266c1..4dc861a7ac56 100644 --- a/drivers/mfd/mfd-core.c +++ b/drivers/mfd/mfd-core.c | |||
@@ -99,8 +99,7 @@ EXPORT_SYMBOL(mfd_add_devices); | |||
99 | 99 | ||
100 | static int mfd_remove_devices_fn(struct device *dev, void *unused) | 100 | static int mfd_remove_devices_fn(struct device *dev, void *unused) |
101 | { | 101 | { |
102 | platform_device_unregister( | 102 | platform_device_unregister(to_platform_device(dev)); |
103 | container_of(dev, struct platform_device, dev)); | ||
104 | return 0; | 103 | return 0; |
105 | } | 104 | } |
106 | 105 | ||