diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2013-01-27 17:48:48 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2013-01-27 17:48:48 +0000 |
commit | 721bf97863757c4add26fe93c7f5487de7ab136a (patch) | |
tree | d444d9ddcfc351d973fe9e8e599e1862049027f3 /target/linux/generic/files/drivers/input/misc | |
parent | ed7ca5d44ed2676c414aa8027787d1cd0989e4a1 (diff) | |
download | mtk-20170518-721bf97863757c4add26fe93c7f5487de7ab136a.zip mtk-20170518-721bf97863757c4add26fe93c7f5487de7ab136a.tar.gz mtk-20170518-721bf97863757c4add26fe93c7f5487de7ab136a.tar.bz2 |
kernel: remove __devinit, __devexit and __devexit_p for kernel 3.8
These attributes where removed with kernel 3.8 and are now causing compile errors.
SVN-Revision: 35328
Diffstat (limited to 'target/linux/generic/files/drivers/input/misc')
-rw-r--r-- | target/linux/generic/files/drivers/input/misc/gpio_buttons.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/generic/files/drivers/input/misc/gpio_buttons.c b/target/linux/generic/files/drivers/input/misc/gpio_buttons.c index 51288a3..af54914 100644 --- a/target/linux/generic/files/drivers/input/misc/gpio_buttons.c +++ b/target/linux/generic/files/drivers/input/misc/gpio_buttons.c @@ -82,7 +82,7 @@ static void gpio_buttons_poll(struct input_polled_dev *dev) } } -static int __devinit gpio_buttons_probe(struct platform_device *pdev) +static int gpio_buttons_probe(struct platform_device *pdev) { struct gpio_buttons_platform_data *pdata = pdev->dev.platform_data; struct device *dev = &pdev->dev; @@ -186,7 +186,7 @@ err_free_bdev: return error; } -static int __devexit gpio_buttons_remove(struct platform_device *pdev) +static int gpio_buttons_remove(struct platform_device *pdev) { struct gpio_buttons_dev *bdev = platform_get_drvdata(pdev); struct gpio_buttons_platform_data *pdata = bdev->pdata; @@ -207,7 +207,7 @@ static int __devexit gpio_buttons_remove(struct platform_device *pdev) static struct platform_driver gpio_buttons_driver = { .probe = gpio_buttons_probe, - .remove = __devexit_p(gpio_buttons_remove), + .remove = gpio_buttons_remove, .driver = { .name = DRV_NAME, .owner = THIS_MODULE, |