diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:21:24 -0500 |
---|---|---|
committer | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2012-11-22 05:07:02 -0500 |
commit | 5153b88cac39b0a14662f0e15439b826bacfe213 (patch) | |
tree | 023d5040ec41bfa558162456b20a69579fd036be /drivers/mtd/maps/gpio-addr-flash.c | |
parent | 8ea9eee903f3acf5aa6bdfb831461aec063b128b (diff) |
mtd: remove use of __devexit_p
CONFIG_HOTPLUG is going away as an option so __devexit_p is no longer
needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Diffstat (limited to 'drivers/mtd/maps/gpio-addr-flash.c')
-rw-r--r-- | drivers/mtd/maps/gpio-addr-flash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/maps/gpio-addr-flash.c b/drivers/mtd/maps/gpio-addr-flash.c index e4de96ba52b3..670af9afa786 100644 --- a/drivers/mtd/maps/gpio-addr-flash.c +++ b/drivers/mtd/maps/gpio-addr-flash.c | |||
@@ -273,7 +273,7 @@ static int __devexit gpio_flash_remove(struct platform_device *pdev) | |||
273 | 273 | ||
274 | static struct platform_driver gpio_flash_driver = { | 274 | static struct platform_driver gpio_flash_driver = { |
275 | .probe = gpio_flash_probe, | 275 | .probe = gpio_flash_probe, |
276 | .remove = __devexit_p(gpio_flash_remove), | 276 | .remove = gpio_flash_remove, |
277 | .driver = { | 277 | .driver = { |
278 | .name = DRIVER_NAME, | 278 | .name = DRIVER_NAME, |
279 | }, | 279 | }, |