diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2009-05-02 09:15:17 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-06-16 17:20:50 -0400 |
commit | a79b11c025a5757a5129e716e7e66dc36a2dfe21 (patch) | |
tree | a044f9fa90b05f1a56a3a1a476078277740e9beb /drivers/media/video/ivtv | |
parent | 102e78136446faca7d7d241b628c5bd0e0d61d5d (diff) |
V4L/DVB (11672): ivtv: use v4l2_device_set_name.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/ivtv')
-rw-r--r-- | drivers/media/video/ivtv/ivtv-driver.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/media/video/ivtv/ivtv-driver.c b/drivers/media/video/ivtv/ivtv-driver.c index db2ac9a99acd..e9ca9a064ae5 100644 --- a/drivers/media/video/ivtv/ivtv-driver.c +++ b/drivers/media/video/ivtv/ivtv-driver.c | |||
@@ -946,17 +946,14 @@ static int __devinit ivtv_probe(struct pci_dev *pdev, | |||
946 | if (itv == NULL) | 946 | if (itv == NULL) |
947 | return -ENOMEM; | 947 | return -ENOMEM; |
948 | itv->pdev = pdev; | 948 | itv->pdev = pdev; |
949 | itv->instance = atomic_inc_return(&ivtv_instance) - 1; | 949 | itv->instance = v4l2_device_set_name(&itv->v4l2_dev, "ivtv", |
950 | &ivtv_instance); | ||
950 | 951 | ||
951 | retval = v4l2_device_register(&pdev->dev, &itv->v4l2_dev); | 952 | retval = v4l2_device_register(&pdev->dev, &itv->v4l2_dev); |
952 | if (retval) { | 953 | if (retval) { |
953 | kfree(itv); | 954 | kfree(itv); |
954 | return retval; | 955 | return retval; |
955 | } | 956 | } |
956 | /* "ivtv + PCI ID" is a bit of a mouthful, so use | ||
957 | "ivtv + instance" instead. */ | ||
958 | snprintf(itv->v4l2_dev.name, sizeof(itv->v4l2_dev.name), | ||
959 | "ivtv%d", itv->instance); | ||
960 | IVTV_INFO("Initializing card %d\n", itv->instance); | 957 | IVTV_INFO("Initializing card %d\n", itv->instance); |
961 | 958 | ||
962 | ivtv_process_options(itv); | 959 | ivtv_process_options(itv); |