diff options
Diffstat (limited to 'drivers/i2c/busses/i2c-xiic.c')
-rw-r--r-- | drivers/i2c/busses/i2c-xiic.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/i2c/busses/i2c-xiic.c b/drivers/i2c/busses/i2c-xiic.c index 641d0e5e3303..f042f6da0ace 100644 --- a/drivers/i2c/busses/i2c-xiic.c +++ b/drivers/i2c/busses/i2c-xiic.c | |||
@@ -689,7 +689,7 @@ static struct i2c_adapter xiic_adapter = { | |||
689 | }; | 689 | }; |
690 | 690 | ||
691 | 691 | ||
692 | static int __devinit xiic_i2c_probe(struct platform_device *pdev) | 692 | static int xiic_i2c_probe(struct platform_device *pdev) |
693 | { | 693 | { |
694 | struct xiic_i2c *i2c; | 694 | struct xiic_i2c *i2c; |
695 | struct xiic_i2c_platform_data *pdata; | 695 | struct xiic_i2c_platform_data *pdata; |
@@ -774,7 +774,7 @@ resource_missing: | |||
774 | return -ENOENT; | 774 | return -ENOENT; |
775 | } | 775 | } |
776 | 776 | ||
777 | static int __devexit xiic_i2c_remove(struct platform_device* pdev) | 777 | static int xiic_i2c_remove(struct platform_device *pdev) |
778 | { | 778 | { |
779 | struct xiic_i2c *i2c = platform_get_drvdata(pdev); | 779 | struct xiic_i2c *i2c = platform_get_drvdata(pdev); |
780 | struct resource *res; | 780 | struct resource *res; |
@@ -800,7 +800,7 @@ static int __devexit xiic_i2c_remove(struct platform_device* pdev) | |||
800 | } | 800 | } |
801 | 801 | ||
802 | #if defined(CONFIG_OF) | 802 | #if defined(CONFIG_OF) |
803 | static const struct of_device_id xiic_of_match[] __devinitconst = { | 803 | static const struct of_device_id xiic_of_match[] = { |
804 | { .compatible = "xlnx,xps-iic-2.00.a", }, | 804 | { .compatible = "xlnx,xps-iic-2.00.a", }, |
805 | {}, | 805 | {}, |
806 | }; | 806 | }; |
@@ -809,7 +809,7 @@ MODULE_DEVICE_TABLE(of, xiic_of_match); | |||
809 | 809 | ||
810 | static struct platform_driver xiic_i2c_driver = { | 810 | static struct platform_driver xiic_i2c_driver = { |
811 | .probe = xiic_i2c_probe, | 811 | .probe = xiic_i2c_probe, |
812 | .remove = __devexit_p(xiic_i2c_remove), | 812 | .remove = xiic_i2c_remove, |
813 | .driver = { | 813 | .driver = { |
814 | .owner = THIS_MODULE, | 814 | .owner = THIS_MODULE, |
815 | .name = DRIVER_NAME, | 815 | .name = DRIVER_NAME, |