Skip to content

Commit

Permalink
V4L/DVB: cs53l32a: remove obsolete v4l2-i2c-drv.h header
Browse files Browse the repository at this point in the history
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Oct 21, 2010
1 parent e2c52ba commit 50337ac
Showing 1 changed file with 21 additions and 6 deletions.
27 changes: 21 additions & 6 deletions drivers/media/video/cs53l32a.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
#include <media/v4l2-device.h>
#include <media/v4l2-chip-ident.h>
#include <media/v4l2-ctrls.h>
#include <media/v4l2-i2c-drv.h>

MODULE_DESCRIPTION("i2c device driver for cs53l32a Audio ADC");
MODULE_AUTHOR("Martin Vaughan");
Expand Down Expand Up @@ -239,9 +238,25 @@ static const struct i2c_device_id cs53l32a_id[] = {
};
MODULE_DEVICE_TABLE(i2c, cs53l32a_id);

static struct v4l2_i2c_driver_data v4l2_i2c_data = {
.name = "cs53l32a",
.remove = cs53l32a_remove,
.probe = cs53l32a_probe,
.id_table = cs53l32a_id,
static struct i2c_driver cs53l32a_driver = {
.driver = {
.owner = THIS_MODULE,
.name = "cs53l32a",
},
.probe = cs53l32a_probe,
.remove = cs53l32a_remove,
.id_table = cs53l32a_id,
};

static __init int init_cs53l32a(void)
{
return i2c_add_driver(&cs53l32a_driver);
}

static __exit void exit_cs53l32a(void)
{
i2c_del_driver(&cs53l32a_driver);
}

module_init(init_cs53l32a);
module_exit(exit_cs53l32a);

0 comments on commit 50337ac

Please sign in to comment.