diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2007-08-04 03:56:00 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-09 21:04:49 -0400 |
commit | 94104aa2a88ac2433f7cbde3dbec629263724271 (patch) | |
tree | 161c24014d399b599ef0f6431934e08b99b55ac8 /drivers/media/video/ivtv/ivtv-ioctl.c | |
parent | 1597f1f676d2c425028b6a20f21a987f489dbdd2 (diff) |
V4L/DVB (5992): ivtv: show card name as well in the LOG_STATUS output.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/ivtv/ivtv-ioctl.c')
-rw-r--r-- | drivers/media/video/ivtv/ivtv-ioctl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/video/ivtv/ivtv-ioctl.c b/drivers/media/video/ivtv/ivtv-ioctl.c index dfe0aedc60fd..85e6a34d5e90 100644 --- a/drivers/media/video/ivtv/ivtv-ioctl.c +++ b/drivers/media/video/ivtv/ivtv-ioctl.c | |||
@@ -1209,6 +1209,7 @@ int ivtv_v4l2_ioctls(struct ivtv *itv, struct file *filp, unsigned int cmd, void | |||
1209 | int i; | 1209 | int i; |
1210 | 1210 | ||
1211 | IVTV_INFO("================= START STATUS CARD #%d =================\n", itv->num); | 1211 | IVTV_INFO("================= START STATUS CARD #%d =================\n", itv->num); |
1212 | IVTV_INFO("Version: %s Card: %s\n", IVTV_VERSION, itv->card_name); | ||
1212 | if (itv->hw_flags & IVTV_HW_TVEEPROM) { | 1213 | if (itv->hw_flags & IVTV_HW_TVEEPROM) { |
1213 | struct tveeprom tv; | 1214 | struct tveeprom tv; |
1214 | 1215 | ||
@@ -1242,7 +1243,7 @@ int ivtv_v4l2_ioctls(struct ivtv *itv, struct file *filp, unsigned int cmd, void | |||
1242 | IVTV_INFO("Tuner: %s\n", | 1243 | IVTV_INFO("Tuner: %s\n", |
1243 | test_bit(IVTV_F_I_RADIO_USER, &itv->i_flags) ? "Radio" : "TV"); | 1244 | test_bit(IVTV_F_I_RADIO_USER, &itv->i_flags) ? "Radio" : "TV"); |
1244 | cx2341x_log_status(&itv->params, itv->name); | 1245 | cx2341x_log_status(&itv->params, itv->name); |
1245 | IVTV_INFO("Version: %s Status flags: 0x%08lx\n", IVTV_VERSION, itv->i_flags); | 1246 | IVTV_INFO("Status flags: 0x%08lx\n", itv->i_flags); |
1246 | for (i = 0; i < IVTV_MAX_STREAMS; i++) { | 1247 | for (i = 0; i < IVTV_MAX_STREAMS; i++) { |
1247 | struct ivtv_stream *s = &itv->streams[i]; | 1248 | struct ivtv_stream *s = &itv->streams[i]; |
1248 | 1249 | ||