diff options
Diffstat (limited to 'drivers/gpio/gpio-da9052.c')
-rw-r--r-- | drivers/gpio/gpio-da9052.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpio/gpio-da9052.c b/drivers/gpio/gpio-da9052.c index 24b8c2974047..a05aacd2777a 100644 --- a/drivers/gpio/gpio-da9052.c +++ b/drivers/gpio/gpio-da9052.c | |||
@@ -188,7 +188,7 @@ static int da9052_gpio_to_irq(struct gpio_chip *gc, u32 offset) | |||
188 | return da9052->irq_base + DA9052_IRQ_GPI0 + offset; | 188 | return da9052->irq_base + DA9052_IRQ_GPI0 + offset; |
189 | } | 189 | } |
190 | 190 | ||
191 | static struct gpio_chip reference_gp __devinitdata = { | 191 | static struct gpio_chip reference_gp = { |
192 | .label = "da9052-gpio", | 192 | .label = "da9052-gpio", |
193 | .owner = THIS_MODULE, | 193 | .owner = THIS_MODULE, |
194 | .get = da9052_gpio_get, | 194 | .get = da9052_gpio_get, |
@@ -201,7 +201,7 @@ static struct gpio_chip reference_gp __devinitdata = { | |||
201 | .base = -1, | 201 | .base = -1, |
202 | }; | 202 | }; |
203 | 203 | ||
204 | static int __devinit da9052_gpio_probe(struct platform_device *pdev) | 204 | static int da9052_gpio_probe(struct platform_device *pdev) |
205 | { | 205 | { |
206 | struct da9052_gpio *gpio; | 206 | struct da9052_gpio *gpio; |
207 | struct da9052_pdata *pdata; | 207 | struct da9052_pdata *pdata; |
@@ -229,7 +229,7 @@ static int __devinit da9052_gpio_probe(struct platform_device *pdev) | |||
229 | return 0; | 229 | return 0; |
230 | } | 230 | } |
231 | 231 | ||
232 | static int __devexit da9052_gpio_remove(struct platform_device *pdev) | 232 | static int da9052_gpio_remove(struct platform_device *pdev) |
233 | { | 233 | { |
234 | struct da9052_gpio *gpio = platform_get_drvdata(pdev); | 234 | struct da9052_gpio *gpio = platform_get_drvdata(pdev); |
235 | 235 | ||
@@ -238,7 +238,7 @@ static int __devexit da9052_gpio_remove(struct platform_device *pdev) | |||
238 | 238 | ||
239 | static struct platform_driver da9052_gpio_driver = { | 239 | static struct platform_driver da9052_gpio_driver = { |
240 | .probe = da9052_gpio_probe, | 240 | .probe = da9052_gpio_probe, |
241 | .remove = __devexit_p(da9052_gpio_remove), | 241 | .remove = da9052_gpio_remove, |
242 | .driver = { | 242 | .driver = { |
243 | .name = "da9052-gpio", | 243 | .name = "da9052-gpio", |
244 | .owner = THIS_MODULE, | 244 | .owner = THIS_MODULE, |