aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/frontends/au8522_decoder.c
diff options
context:
space:
mode:
authorDevin Heitmueller <dheitmueller@linuxtv.org>2009-03-15 20:05:51 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-03-30 12:43:28 -0300
commitbaadd7925c98968c94e9657272d91957a3ad0a41 (patch)
tree821f3adb3b2b2d659f28e0ed022ed9cdaaf55499 /drivers/media/dvb/frontends/au8522_decoder.c
parentV4L/DVB (11088): au0828: finish videodev/subdev conversion (diff)
downloadlinux-dev-baadd7925c98968c94e9657272d91957a3ad0a41.tar.xz
linux-dev-baadd7925c98968c94e9657272d91957a3ad0a41.zip
V4L/DVB (11089): au8522: finish conversion to v4l2_device/subdev
Per Hans Verkuil <hverkuil@xs4all.nl> instruction, remove the au8522_command and replace v4l2-i2c-drv-legacy.h with v4l2-i2c-drv.h Thanks to Hans Verkuil <hverkuil@xs4all.nl> for reviewing the au8522 analog support. Signed-off-by: Devin Heitmueller <dheitmueller@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/frontends/au8522_decoder.c')
-rw-r--r--drivers/media/dvb/frontends/au8522_decoder.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/media/dvb/frontends/au8522_decoder.c b/drivers/media/dvb/frontends/au8522_decoder.c
index 2ad84c236ec7..c9d0eecfbe3c 100644
--- a/drivers/media/dvb/frontends/au8522_decoder.c
+++ b/drivers/media/dvb/frontends/au8522_decoder.c
@@ -37,7 +37,7 @@
#include <linux/delay.h>
#include <media/v4l2-common.h>
#include <media/v4l2-chip-ident.h>
-#include <media/v4l2-i2c-drv-legacy.h>
+#include <media/v4l2-i2c-drv.h>
#include <media/v4l2-device.h>
#include "au8522.h"
#include "au8522_priv.h"
@@ -725,11 +725,6 @@ static int au8522_log_status(struct v4l2_subdev *sd)
return 0;
}
-static int au8522_command(struct i2c_client *client, unsigned cmd, void *arg)
-{
- return v4l2_subdev_command(i2c_get_clientdata(client), cmd, arg);
-}
-
/* ----------------------------------------------------------------------- */
static const struct v4l2_subdev_core_ops au8522_core_ops = {
@@ -838,7 +833,6 @@ MODULE_DEVICE_TABLE(i2c, au8522_id);
static struct v4l2_i2c_driver_data v4l2_i2c_data = {
.name = "au8522",
.driverid = I2C_DRIVERID_AU8522,
- .command = au8522_command,
.probe = au8522_probe,
.remove = au8522_remove,
.id_table = au8522_id,