diff options
-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); |