diff options
Diffstat (limited to 'drivers/rtc/rtc-ds3234.c')
-rw-r--r-- | drivers/rtc/rtc-ds3234.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/rtc/rtc-ds3234.c b/drivers/rtc/rtc-ds3234.c index fda707926f02..7a4495ef1c39 100644 --- a/drivers/rtc/rtc-ds3234.c +++ b/drivers/rtc/rtc-ds3234.c | |||
@@ -105,7 +105,7 @@ static const struct rtc_class_ops ds3234_rtc_ops = { | |||
105 | .set_time = ds3234_set_time, | 105 | .set_time = ds3234_set_time, |
106 | }; | 106 | }; |
107 | 107 | ||
108 | static int __devinit ds3234_probe(struct spi_device *spi) | 108 | static int ds3234_probe(struct spi_device *spi) |
109 | { | 109 | { |
110 | struct rtc_device *rtc; | 110 | struct rtc_device *rtc; |
111 | unsigned char tmp; | 111 | unsigned char tmp; |
@@ -156,7 +156,7 @@ static int __devinit ds3234_probe(struct spi_device *spi) | |||
156 | return 0; | 156 | return 0; |
157 | } | 157 | } |
158 | 158 | ||
159 | static int __devexit ds3234_remove(struct spi_device *spi) | 159 | static int ds3234_remove(struct spi_device *spi) |
160 | { | 160 | { |
161 | struct rtc_device *rtc = spi_get_drvdata(spi); | 161 | struct rtc_device *rtc = spi_get_drvdata(spi); |
162 | 162 | ||
@@ -170,7 +170,7 @@ static struct spi_driver ds3234_driver = { | |||
170 | .owner = THIS_MODULE, | 170 | .owner = THIS_MODULE, |
171 | }, | 171 | }, |
172 | .probe = ds3234_probe, | 172 | .probe = ds3234_probe, |
173 | .remove = __devexit_p(ds3234_remove), | 173 | .remove = ds3234_remove, |
174 | }; | 174 | }; |
175 | 175 | ||
176 | module_spi_driver(ds3234_driver); | 176 | module_spi_driver(ds3234_driver); |