diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-11-13 16:12:43 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-11-14 11:24:45 -0500 |
commit | c6241b6c64dbe759e0eccaee913bdcf4d7960367 (patch) | |
tree | 0e1fa8bb36df7f01b70c812f2adb16d827d07b8e /drivers/media | |
parent | 41f5230f3fc6296d0d88ab9f4c3c07fcbbe53e59 (diff) |
V4L/DVB (9623): tvaudio: Improve debug msg by printing something more human
Before the patch, the used ioctl were printed as an hexadecimal code,
hard to be understand without consulting the way _IO macros work.
Instead, use the V4L default handler for printing such errors into a way
that would be easier to understand.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/video/tvaudio.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/media/video/tvaudio.c b/drivers/media/video/tvaudio.c index 779ce7f865c3..fb46ce4a1090 100644 --- a/drivers/media/video/tvaudio.c +++ b/drivers/media/video/tvaudio.c | |||
@@ -34,6 +34,7 @@ | |||
34 | 34 | ||
35 | #include <media/tvaudio.h> | 35 | #include <media/tvaudio.h> |
36 | #include <media/v4l2-common.h> | 36 | #include <media/v4l2-common.h> |
37 | #include <media/v4l2-ioctl.h> | ||
37 | #include <media/v4l2-chip-ident.h> | 38 | #include <media/v4l2-chip-ident.h> |
38 | #include <media/v4l2-i2c-drv-legacy.h> | 39 | #include <media/v4l2-i2c-drv-legacy.h> |
39 | 40 | ||
@@ -1732,7 +1733,10 @@ static int chip_command(struct i2c_client *client, | |||
1732 | struct CHIPSTATE *chip = i2c_get_clientdata(client); | 1733 | struct CHIPSTATE *chip = i2c_get_clientdata(client); |
1733 | struct CHIPDESC *desc = chip->desc; | 1734 | struct CHIPDESC *desc = chip->desc; |
1734 | 1735 | ||
1735 | v4l_dbg(1, debug, chip->c, "%s: chip_command 0x%x\n", chip->c->name, cmd); | 1736 | if (debug > 0) { |
1737 | v4l_i2c_print_ioctl(chip->c, cmd); | ||
1738 | printk("\n"); | ||
1739 | } | ||
1736 | 1740 | ||
1737 | switch (cmd) { | 1741 | switch (cmd) { |
1738 | case AUDC_SET_RADIO: | 1742 | case AUDC_SET_RADIO: |