diff options
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/cs5535-gpio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpio/cs5535-gpio.c b/drivers/gpio/cs5535-gpio.c index 0d05ea7d499b..6e16cba56ad2 100644 --- a/drivers/gpio/cs5535-gpio.c +++ b/drivers/gpio/cs5535-gpio.c | |||
@@ -373,7 +373,7 @@ static int __devexit cs5535_gpio_remove(struct platform_device *pdev) | |||
373 | return 0; | 373 | return 0; |
374 | } | 374 | } |
375 | 375 | ||
376 | static struct platform_driver cs5535_gpio_drv = { | 376 | static struct platform_driver cs5535_gpio_driver = { |
377 | .driver = { | 377 | .driver = { |
378 | .name = DRV_NAME, | 378 | .name = DRV_NAME, |
379 | .owner = THIS_MODULE, | 379 | .owner = THIS_MODULE, |
@@ -384,12 +384,12 @@ static struct platform_driver cs5535_gpio_drv = { | |||
384 | 384 | ||
385 | static int __init cs5535_gpio_init(void) | 385 | static int __init cs5535_gpio_init(void) |
386 | { | 386 | { |
387 | return platform_driver_register(&cs5535_gpio_drv); | 387 | return platform_driver_register(&cs5535_gpio_driver); |
388 | } | 388 | } |
389 | 389 | ||
390 | static void __exit cs5535_gpio_exit(void) | 390 | static void __exit cs5535_gpio_exit(void) |
391 | { | 391 | { |
392 | platform_driver_unregister(&cs5535_gpio_drv); | 392 | platform_driver_unregister(&cs5535_gpio_driver); |
393 | } | 393 | } |
394 | 394 | ||
395 | module_init(cs5535_gpio_init); | 395 | module_init(cs5535_gpio_init); |