aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/rtc/rtc-ds3234.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/rtc/rtc-ds3234.c b/drivers/rtc/rtc-ds3234.c
index 67f1a80112e2..4c9ba5368464 100644
--- a/drivers/rtc/rtc-ds3234.c
+++ b/drivers/rtc/rtc-ds3234.c
@@ -156,18 +156,12 @@ static int ds3234_probe(struct spi_device *spi)
156 return 0; 156 return 0;
157} 157}
158 158
159static int ds3234_remove(struct spi_device *spi)
160{
161 return 0;
162}
163
164static struct spi_driver ds3234_driver = { 159static struct spi_driver ds3234_driver = {
165 .driver = { 160 .driver = {
166 .name = "ds3234", 161 .name = "ds3234",
167 .owner = THIS_MODULE, 162 .owner = THIS_MODULE,
168 }, 163 },
169 .probe = ds3234_probe, 164 .probe = ds3234_probe,
170 .remove = ds3234_remove,
171}; 165};
172 166
173module_spi_driver(ds3234_driver); 167module_spi_driver(ds3234_driver);