diff options
Diffstat (limited to 'drivers/gpio/gpio-adp5520.c')
| -rw-r--r-- | drivers/gpio/gpio-adp5520.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpio/gpio-adp5520.c b/drivers/gpio/gpio-adp5520.c index 2f263cc3256..8afa95f831b 100644 --- a/drivers/gpio/gpio-adp5520.c +++ b/drivers/gpio/gpio-adp5520.c @@ -87,7 +87,7 @@ static int adp5520_gpio_direction_output(struct gpio_chip *chip,  	return ret;  } -static int __devinit adp5520_gpio_probe(struct platform_device *pdev) +static int adp5520_gpio_probe(struct platform_device *pdev)  {  	struct adp5520_gpio_platform_data *pdata = pdev->dev.platform_data;  	struct adp5520_gpio *dev; @@ -167,7 +167,7 @@ err:  	return ret;  } -static int __devexit adp5520_gpio_remove(struct platform_device *pdev) +static int adp5520_gpio_remove(struct platform_device *pdev)  {  	struct adp5520_gpio *dev;  	int ret; @@ -190,7 +190,7 @@ static struct platform_driver adp5520_gpio_driver = {  		.owner	= THIS_MODULE,  	},  	.probe		= adp5520_gpio_probe, -	.remove		= __devexit_p(adp5520_gpio_remove), +	.remove		= adp5520_gpio_remove,  };  module_platform_driver(adp5520_gpio_driver);  |