diff options
Diffstat (limited to 'drivers/gpio/gpio-da9055.c')
-rw-r--r-- | drivers/gpio/gpio-da9055.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpio/gpio-da9055.c b/drivers/gpio/gpio-da9055.c index 55d83c7d9c7f..fd6dfe382f13 100644 --- a/drivers/gpio/gpio-da9055.c +++ b/drivers/gpio/gpio-da9055.c | |||
@@ -126,7 +126,7 @@ static int da9055_gpio_to_irq(struct gpio_chip *gc, u32 offset) | |||
126 | DA9055_IRQ_GPI0 + offset); | 126 | DA9055_IRQ_GPI0 + offset); |
127 | } | 127 | } |
128 | 128 | ||
129 | static struct gpio_chip reference_gp __devinitdata = { | 129 | static struct gpio_chip reference_gp = { |
130 | .label = "da9055-gpio", | 130 | .label = "da9055-gpio", |
131 | .owner = THIS_MODULE, | 131 | .owner = THIS_MODULE, |
132 | .get = da9055_gpio_get, | 132 | .get = da9055_gpio_get, |
@@ -139,7 +139,7 @@ static struct gpio_chip reference_gp __devinitdata = { | |||
139 | .base = -1, | 139 | .base = -1, |
140 | }; | 140 | }; |
141 | 141 | ||
142 | static int __devinit da9055_gpio_probe(struct platform_device *pdev) | 142 | static int da9055_gpio_probe(struct platform_device *pdev) |
143 | { | 143 | { |
144 | struct da9055_gpio *gpio; | 144 | struct da9055_gpio *gpio; |
145 | struct da9055_pdata *pdata; | 145 | struct da9055_pdata *pdata; |
@@ -170,7 +170,7 @@ err_mem: | |||
170 | return ret; | 170 | return ret; |
171 | } | 171 | } |
172 | 172 | ||
173 | static int __devexit da9055_gpio_remove(struct platform_device *pdev) | 173 | static int da9055_gpio_remove(struct platform_device *pdev) |
174 | { | 174 | { |
175 | struct da9055_gpio *gpio = platform_get_drvdata(pdev); | 175 | struct da9055_gpio *gpio = platform_get_drvdata(pdev); |
176 | 176 | ||
@@ -179,7 +179,7 @@ static int __devexit da9055_gpio_remove(struct platform_device *pdev) | |||
179 | 179 | ||
180 | static struct platform_driver da9055_gpio_driver = { | 180 | static struct platform_driver da9055_gpio_driver = { |
181 | .probe = da9055_gpio_probe, | 181 | .probe = da9055_gpio_probe, |
182 | .remove = __devexit_p(da9055_gpio_remove), | 182 | .remove = da9055_gpio_remove, |
183 | .driver = { | 183 | .driver = { |
184 | .name = "da9055-gpio", | 184 | .name = "da9055-gpio", |
185 | .owner = THIS_MODULE, | 185 | .owner = THIS_MODULE, |