diff options
Diffstat (limited to 'drivers/mfd/tps65912-spi.c')
-rw-r--r-- | drivers/mfd/tps65912-spi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mfd/tps65912-spi.c b/drivers/mfd/tps65912-spi.c index 27d3302d56b8..b45f460d299f 100644 --- a/drivers/mfd/tps65912-spi.c +++ b/drivers/mfd/tps65912-spi.c | |||
@@ -81,7 +81,7 @@ static int tps65912_spi_read(struct tps65912 *tps65912, u8 addr, | |||
81 | return ret; | 81 | return ret; |
82 | } | 82 | } |
83 | 83 | ||
84 | static int __devinit tps65912_spi_probe(struct spi_device *spi) | 84 | static int tps65912_spi_probe(struct spi_device *spi) |
85 | { | 85 | { |
86 | struct tps65912 *tps65912; | 86 | struct tps65912 *tps65912; |
87 | 87 | ||
@@ -99,7 +99,7 @@ static int __devinit tps65912_spi_probe(struct spi_device *spi) | |||
99 | return tps65912_device_init(tps65912); | 99 | return tps65912_device_init(tps65912); |
100 | } | 100 | } |
101 | 101 | ||
102 | static int __devexit tps65912_spi_remove(struct spi_device *spi) | 102 | static int tps65912_spi_remove(struct spi_device *spi) |
103 | { | 103 | { |
104 | struct tps65912 *tps65912 = spi_get_drvdata(spi); | 104 | struct tps65912 *tps65912 = spi_get_drvdata(spi); |
105 | 105 | ||
@@ -114,7 +114,7 @@ static struct spi_driver tps65912_spi_driver = { | |||
114 | .owner = THIS_MODULE, | 114 | .owner = THIS_MODULE, |
115 | }, | 115 | }, |
116 | .probe = tps65912_spi_probe, | 116 | .probe = tps65912_spi_probe, |
117 | .remove = __devexit_p(tps65912_spi_remove), | 117 | .remove = tps65912_spi_remove, |
118 | }; | 118 | }; |
119 | 119 | ||
120 | static int __init tps65912_spi_init(void) | 120 | static int __init tps65912_spi_init(void) |