diff options
Diffstat (limited to 'drivers/i2c/busses/i2c-cpm.c')
-rw-r--r-- | drivers/i2c/busses/i2c-cpm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/i2c/busses/i2c-cpm.c b/drivers/i2c/busses/i2c-cpm.c index c1e1096ba069..2e79c1024191 100644 --- a/drivers/i2c/busses/i2c-cpm.c +++ b/drivers/i2c/busses/i2c-cpm.c | |||
@@ -426,7 +426,7 @@ static const struct i2c_adapter cpm_ops = { | |||
426 | .algo = &cpm_i2c_algo, | 426 | .algo = &cpm_i2c_algo, |
427 | }; | 427 | }; |
428 | 428 | ||
429 | static int __devinit cpm_i2c_setup(struct cpm_i2c *cpm) | 429 | static int cpm_i2c_setup(struct cpm_i2c *cpm) |
430 | { | 430 | { |
431 | struct platform_device *ofdev = cpm->ofdev; | 431 | struct platform_device *ofdev = cpm->ofdev; |
432 | const u32 *data; | 432 | const u32 *data; |
@@ -634,7 +634,7 @@ static void cpm_i2c_shutdown(struct cpm_i2c *cpm) | |||
634 | cpm_muram_free(cpm->i2c_addr); | 634 | cpm_muram_free(cpm->i2c_addr); |
635 | } | 635 | } |
636 | 636 | ||
637 | static int __devinit cpm_i2c_probe(struct platform_device *ofdev) | 637 | static int cpm_i2c_probe(struct platform_device *ofdev) |
638 | { | 638 | { |
639 | int result, len; | 639 | int result, len; |
640 | struct cpm_i2c *cpm; | 640 | struct cpm_i2c *cpm; |
@@ -688,7 +688,7 @@ out_free: | |||
688 | return result; | 688 | return result; |
689 | } | 689 | } |
690 | 690 | ||
691 | static int __devexit cpm_i2c_remove(struct platform_device *ofdev) | 691 | static int cpm_i2c_remove(struct platform_device *ofdev) |
692 | { | 692 | { |
693 | struct cpm_i2c *cpm = dev_get_drvdata(&ofdev->dev); | 693 | struct cpm_i2c *cpm = dev_get_drvdata(&ofdev->dev); |
694 | 694 | ||
@@ -716,7 +716,7 @@ MODULE_DEVICE_TABLE(of, cpm_i2c_match); | |||
716 | 716 | ||
717 | static struct platform_driver cpm_i2c_driver = { | 717 | static struct platform_driver cpm_i2c_driver = { |
718 | .probe = cpm_i2c_probe, | 718 | .probe = cpm_i2c_probe, |
719 | .remove = __devexit_p(cpm_i2c_remove), | 719 | .remove = cpm_i2c_remove, |
720 | .driver = { | 720 | .driver = { |
721 | .name = "fsl-i2c-cpm", | 721 | .name = "fsl-i2c-cpm", |
722 | .owner = THIS_MODULE, | 722 | .owner = THIS_MODULE, |