diff options
Diffstat (limited to 'drivers/i2c/busses/scx200_acb.c')
-rw-r--r-- | drivers/i2c/busses/scx200_acb.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/i2c/busses/scx200_acb.c b/drivers/i2c/busses/scx200_acb.c index 08aab57337dd..3862a953239c 100644 --- a/drivers/i2c/busses/scx200_acb.c +++ b/drivers/i2c/busses/scx200_acb.c | |||
@@ -389,7 +389,7 @@ static const struct i2c_algorithm scx200_acb_algorithm = { | |||
389 | static struct scx200_acb_iface *scx200_acb_list; | 389 | static struct scx200_acb_iface *scx200_acb_list; |
390 | static DEFINE_MUTEX(scx200_acb_list_mutex); | 390 | static DEFINE_MUTEX(scx200_acb_list_mutex); |
391 | 391 | ||
392 | static __devinit int scx200_acb_probe(struct scx200_acb_iface *iface) | 392 | static int scx200_acb_probe(struct scx200_acb_iface *iface) |
393 | { | 393 | { |
394 | u8 val; | 394 | u8 val; |
395 | 395 | ||
@@ -424,7 +424,7 @@ static __devinit int scx200_acb_probe(struct scx200_acb_iface *iface) | |||
424 | return 0; | 424 | return 0; |
425 | } | 425 | } |
426 | 426 | ||
427 | static __devinit struct scx200_acb_iface *scx200_create_iface(const char *text, | 427 | static struct scx200_acb_iface *scx200_create_iface(const char *text, |
428 | struct device *dev, int index) | 428 | struct device *dev, int index) |
429 | { | 429 | { |
430 | struct scx200_acb_iface *iface; | 430 | struct scx200_acb_iface *iface; |
@@ -449,7 +449,7 @@ static __devinit struct scx200_acb_iface *scx200_create_iface(const char *text, | |||
449 | return iface; | 449 | return iface; |
450 | } | 450 | } |
451 | 451 | ||
452 | static int __devinit scx200_acb_create(struct scx200_acb_iface *iface) | 452 | static int scx200_acb_create(struct scx200_acb_iface *iface) |
453 | { | 453 | { |
454 | struct i2c_adapter *adapter; | 454 | struct i2c_adapter *adapter; |
455 | int rc; | 455 | int rc; |
@@ -480,7 +480,7 @@ static int __devinit scx200_acb_create(struct scx200_acb_iface *iface) | |||
480 | return 0; | 480 | return 0; |
481 | } | 481 | } |
482 | 482 | ||
483 | static struct scx200_acb_iface * __devinit scx200_create_dev(const char *text, | 483 | static struct scx200_acb_iface *scx200_create_dev(const char *text, |
484 | unsigned long base, int index, struct device *dev) | 484 | unsigned long base, int index, struct device *dev) |
485 | { | 485 | { |
486 | struct scx200_acb_iface *iface; | 486 | struct scx200_acb_iface *iface; |
@@ -508,7 +508,7 @@ static struct scx200_acb_iface * __devinit scx200_create_dev(const char *text, | |||
508 | return NULL; | 508 | return NULL; |
509 | } | 509 | } |
510 | 510 | ||
511 | static int __devinit scx200_probe(struct platform_device *pdev) | 511 | static int scx200_probe(struct platform_device *pdev) |
512 | { | 512 | { |
513 | struct scx200_acb_iface *iface; | 513 | struct scx200_acb_iface *iface; |
514 | struct resource *res; | 514 | struct resource *res; |
@@ -530,14 +530,14 @@ static int __devinit scx200_probe(struct platform_device *pdev) | |||
530 | return 0; | 530 | return 0; |
531 | } | 531 | } |
532 | 532 | ||
533 | static void __devexit scx200_cleanup_iface(struct scx200_acb_iface *iface) | 533 | static void scx200_cleanup_iface(struct scx200_acb_iface *iface) |
534 | { | 534 | { |
535 | i2c_del_adapter(&iface->adapter); | 535 | i2c_del_adapter(&iface->adapter); |
536 | release_region(iface->base, 8); | 536 | release_region(iface->base, 8); |
537 | kfree(iface); | 537 | kfree(iface); |
538 | } | 538 | } |
539 | 539 | ||
540 | static int __devexit scx200_remove(struct platform_device *pdev) | 540 | static int scx200_remove(struct platform_device *pdev) |
541 | { | 541 | { |
542 | struct scx200_acb_iface *iface; | 542 | struct scx200_acb_iface *iface; |
543 | 543 | ||
@@ -554,7 +554,7 @@ static struct platform_driver scx200_pci_driver = { | |||
554 | .owner = THIS_MODULE, | 554 | .owner = THIS_MODULE, |
555 | }, | 555 | }, |
556 | .probe = scx200_probe, | 556 | .probe = scx200_probe, |
557 | .remove = __devexit_p(scx200_remove), | 557 | .remove = scx200_remove, |
558 | }; | 558 | }; |
559 | 559 | ||
560 | static DEFINE_PCI_DEVICE_TABLE(scx200_isa) = { | 560 | static DEFINE_PCI_DEVICE_TABLE(scx200_isa) = { |