diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2009-03-24 19:38:22 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-03-24 19:38:22 -0400 |
commit | c3ef01ce4f73f41e99b2a5f0796f1f1a1daaaaa2 (patch) | |
tree | 1cdcc03103b2b050abcd924bec3f3f6624129179 /drivers/media/radio/radio-tea5764.c | |
parent | 2ead054cd26752c7ce47dfbf320dd021ef70682d (diff) |
v4l: struct device - replace bus_id with dev_name(), dev_set_name()
Cc: mchehab@infradead.org
Cc: linux-media@vger.kernel.org
Acked-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
Diffstat (limited to 'drivers/media/radio/radio-tea5764.c')
-rw-r--r-- | drivers/media/radio/radio-tea5764.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/radio/radio-tea5764.c b/drivers/media/radio/radio-tea5764.c index 4d35308fc1ff..393623818ade 100644 --- a/drivers/media/radio/radio-tea5764.c +++ b/drivers/media/radio/radio-tea5764.c | |||
@@ -298,7 +298,8 @@ static int vidioc_querycap(struct file *file, void *priv, | |||
298 | 298 | ||
299 | strlcpy(v->driver, dev->dev.driver->name, sizeof(v->driver)); | 299 | strlcpy(v->driver, dev->dev.driver->name, sizeof(v->driver)); |
300 | strlcpy(v->card, dev->name, sizeof(v->card)); | 300 | strlcpy(v->card, dev->name, sizeof(v->card)); |
301 | snprintf(v->bus_info, sizeof(v->bus_info), "I2C:%s", dev->dev.bus_id); | 301 | snprintf(v->bus_info, sizeof(v->bus_info), |
302 | "I2C:%s", dev_name(&dev->dev)); | ||
302 | v->version = RADIO_VERSION; | 303 | v->version = RADIO_VERSION; |
303 | v->capabilities = V4L2_CAP_TUNER | V4L2_CAP_RADIO; | 304 | v->capabilities = V4L2_CAP_TUNER | V4L2_CAP_RADIO; |
304 | return 0; | 305 | return 0; |