diff options
Diffstat (limited to 'drivers/media/radio/tef6862.c')
-rw-r--r-- | drivers/media/radio/tef6862.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/media/radio/tef6862.c b/drivers/media/radio/tef6862.c index 3408685b690c..6418c4c9faf1 100644 --- a/drivers/media/radio/tef6862.c +++ b/drivers/media/radio/tef6862.c | |||
@@ -215,20 +215,8 @@ static struct i2c_driver tef6862_driver = { | |||
215 | .id_table = tef6862_id, | 215 | .id_table = tef6862_id, |
216 | }; | 216 | }; |
217 | 217 | ||
218 | static __init int tef6862_init(void) | 218 | module_i2c_driver(tef6862_driver); |
219 | { | ||
220 | return i2c_add_driver(&tef6862_driver); | ||
221 | } | ||
222 | |||
223 | static __exit void tef6862_exit(void) | ||
224 | { | ||
225 | i2c_del_driver(&tef6862_driver); | ||
226 | } | ||
227 | |||
228 | module_init(tef6862_init); | ||
229 | module_exit(tef6862_exit); | ||
230 | 219 | ||
231 | MODULE_DESCRIPTION("TEF6862 Car Radio Enhanced Selectivity Tuner"); | 220 | MODULE_DESCRIPTION("TEF6862 Car Radio Enhanced Selectivity Tuner"); |
232 | MODULE_AUTHOR("Mocean Laboratories"); | 221 | MODULE_AUTHOR("Mocean Laboratories"); |
233 | MODULE_LICENSE("GPL v2"); | 222 | MODULE_LICENSE("GPL v2"); |
234 | |||