diff options
Diffstat (limited to 'drivers/media/video/upd64031a.c')
| -rw-r--r-- | drivers/media/video/upd64031a.c | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/drivers/media/video/upd64031a.c b/drivers/media/video/upd64031a.c index 36c0c461d8be..f8138c75be8b 100644 --- a/drivers/media/video/upd64031a.c +++ b/drivers/media/video/upd64031a.c | |||
| @@ -28,7 +28,6 @@ | |||
| 28 | #include <linux/slab.h> | 28 | #include <linux/slab.h> |
| 29 | #include <media/v4l2-device.h> | 29 | #include <media/v4l2-device.h> |
| 30 | #include <media/v4l2-chip-ident.h> | 30 | #include <media/v4l2-chip-ident.h> |
| 31 | #include <media/v4l2-i2c-drv.h> | ||
| 32 | #include <media/upd64031a.h> | 31 | #include <media/upd64031a.h> |
| 33 | 32 | ||
| 34 | /* --------------------- read registers functions define -------------------- */ | 33 | /* --------------------- read registers functions define -------------------- */ |
| @@ -262,9 +261,25 @@ static const struct i2c_device_id upd64031a_id[] = { | |||
| 262 | }; | 261 | }; |
| 263 | MODULE_DEVICE_TABLE(i2c, upd64031a_id); | 262 | MODULE_DEVICE_TABLE(i2c, upd64031a_id); |
| 264 | 263 | ||
| 265 | static struct v4l2_i2c_driver_data v4l2_i2c_data = { | 264 | static struct i2c_driver upd64031a_driver = { |
| 266 | .name = "upd64031a", | 265 | .driver = { |
| 267 | .probe = upd64031a_probe, | 266 | .owner = THIS_MODULE, |
| 268 | .remove = upd64031a_remove, | 267 | .name = "upd64031a", |
| 269 | .id_table = upd64031a_id, | 268 | }, |
| 269 | .probe = upd64031a_probe, | ||
| 270 | .remove = upd64031a_remove, | ||
| 271 | .id_table = upd64031a_id, | ||
| 270 | }; | 272 | }; |
| 273 | |||
| 274 | static __init int init_upd64031a(void) | ||
| 275 | { | ||
| 276 | return i2c_add_driver(&upd64031a_driver); | ||
| 277 | } | ||
| 278 | |||
| 279 | static __exit void exit_upd64031a(void) | ||
| 280 | { | ||
| 281 | i2c_del_driver(&upd64031a_driver); | ||
| 282 | } | ||
| 283 | |||
| 284 | module_init(init_upd64031a); | ||
| 285 | module_exit(exit_upd64031a); | ||
