aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2010-09-15 14:11:15 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-10-20 23:05:58 -0400
commit962961ef7222f4c83daab24d1b00aee67b8ed5f0 (patch)
treeb7b6e75180c0cc0ea071ebdebb886e09f0c6eed2 /drivers
parent6ce58bead37b8aa4ba83ff057614341c3a4cd40d (diff)
V4L/DVB: upd64031a: remove obsolete v4l2-i2c-drv.h header
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/media/video/upd64031a.c27
1 files changed, 21 insertions, 6 deletions
diff --git a/drivers/media/video/upd64031a.c b/drivers/media/video/upd64031a.c
index 36c0c461d8b..f8138c75be8 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};
263MODULE_DEVICE_TABLE(i2c, upd64031a_id); 262MODULE_DEVICE_TABLE(i2c, upd64031a_id);
264 263
265static struct v4l2_i2c_driver_data v4l2_i2c_data = { 264static 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
274static __init int init_upd64031a(void)
275{
276 return i2c_add_driver(&upd64031a_driver);
277}
278
279static __exit void exit_upd64031a(void)
280{
281 i2c_del_driver(&upd64031a_driver);
282}
283
284module_init(init_upd64031a);
285module_exit(exit_upd64031a);