diff options
author | Nikanth Karthikesan <knikanth@suse.de> | 2011-03-15 01:29:23 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2011-03-17 14:52:05 -0400 |
commit | 36885ff0e6563687e6152da6d311abbf83c0198f (patch) | |
tree | fe39b4bdd9238df7f5c2ce4d994a8e44986dc7a8 | |
parent | 42fea15d6dc410e62dac6a764142045280624a5b (diff) |
gpio/cs5535-gpio: Fix section mismatch
Fix section mismatch by annotating using variable name suffix.
Signed-off-by: Nikanth Karthikesan <knikanth@suse.de>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
-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); |