diff options
Diffstat (limited to 'sound/i2c')
-rw-r--r-- | sound/i2c/other/tea575x-tuner.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sound/i2c/other/tea575x-tuner.c b/sound/i2c/other/tea575x-tuner.c index 98ccec27e7bf..4831800239d3 100644 --- a/sound/i2c/other/tea575x-tuner.c +++ b/sound/i2c/other/tea575x-tuner.c | |||
@@ -178,8 +178,9 @@ static int vidioc_querycap(struct file *file, void *priv, | |||
178 | struct snd_tea575x *tea = video_drvdata(file); | 178 | struct snd_tea575x *tea = video_drvdata(file); |
179 | 179 | ||
180 | strlcpy(v->driver, "tea575x-tuner", sizeof(v->driver)); | 180 | strlcpy(v->driver, "tea575x-tuner", sizeof(v->driver)); |
181 | strlcpy(v->card, tea->tea5759 ? "TEA5759" : "TEA5757", sizeof(v->card)); | 181 | strlcpy(v->card, tea->card, sizeof(v->card)); |
182 | sprintf(v->bus_info, "PCI"); | 182 | strlcat(v->card, tea->tea5759 ? " TEA5759" : " TEA5757", sizeof(v->card)); |
183 | strlcpy(v->bus_info, tea->bus_info, sizeof(v->bus_info)); | ||
183 | v->version = RADIO_VERSION; | 184 | v->version = RADIO_VERSION; |
184 | v->capabilities = V4L2_CAP_TUNER | V4L2_CAP_RADIO; | 185 | v->capabilities = V4L2_CAP_TUNER | V4L2_CAP_RADIO; |
185 | return 0; | 186 | return 0; |