diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2009-02-11 17:28:30 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-30 11:42:45 -0400 |
commit | f1f8c907b752ed281b1b4e6ca3605db50a8d6250 (patch) | |
tree | b37a3112f8d86cab7448020e56a82b8700e8c651 /drivers/media/video/saa6588.c | |
parent | c3fda7f835b025f3c020fa0865086fd23609e7ca (diff) |
V4L/DVB (10538): saa6588: add g_chip_ident support.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/saa6588.c')
-rw-r--r-- | drivers/media/video/saa6588.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/media/video/saa6588.c b/drivers/media/video/saa6588.c index 4d31c320ac17..5f4e9858cb9d 100644 --- a/drivers/media/video/saa6588.c +++ b/drivers/media/video/saa6588.c | |||
@@ -33,6 +33,7 @@ | |||
33 | 33 | ||
34 | #include <media/rds.h> | 34 | #include <media/rds.h> |
35 | #include <media/v4l2-device.h> | 35 | #include <media/v4l2-device.h> |
36 | #include <media/v4l2-chip-ident.h> | ||
36 | #include <media/v4l2-i2c-drv-legacy.h> | 37 | #include <media/v4l2-i2c-drv-legacy.h> |
37 | 38 | ||
38 | /* Addresses to scan */ | 39 | /* Addresses to scan */ |
@@ -431,6 +432,13 @@ static long saa6588_ioctl(struct v4l2_subdev *sd, unsigned int cmd, void *arg) | |||
431 | return 0; | 432 | return 0; |
432 | } | 433 | } |
433 | 434 | ||
435 | static int saa6588_g_chip_ident(struct v4l2_subdev *sd, struct v4l2_dbg_chip_ident *chip) | ||
436 | { | ||
437 | struct i2c_client *client = v4l2_get_subdevdata(sd); | ||
438 | |||
439 | return v4l2_chip_ident_i2c_client(client, chip, V4L2_IDENT_SAA6588, 0); | ||
440 | } | ||
441 | |||
434 | static int saa6588_command(struct i2c_client *client, unsigned cmd, void *arg) | 442 | static int saa6588_command(struct i2c_client *client, unsigned cmd, void *arg) |
435 | { | 443 | { |
436 | return v4l2_subdev_command(i2c_get_clientdata(client), cmd, arg); | 444 | return v4l2_subdev_command(i2c_get_clientdata(client), cmd, arg); |
@@ -439,6 +447,7 @@ static int saa6588_command(struct i2c_client *client, unsigned cmd, void *arg) | |||
439 | /* ----------------------------------------------------------------------- */ | 447 | /* ----------------------------------------------------------------------- */ |
440 | 448 | ||
441 | static const struct v4l2_subdev_core_ops saa6588_core_ops = { | 449 | static const struct v4l2_subdev_core_ops saa6588_core_ops = { |
450 | .g_chip_ident = saa6588_g_chip_ident, | ||
442 | .ioctl = saa6588_ioctl, | 451 | .ioctl = saa6588_ioctl, |
443 | }; | 452 | }; |
444 | 453 | ||