V4L/DVB (10945): pwc : fix LED and power setup for first open
authorMartin Fuzzey <mfuzzey@gmail.com>
Mon, 9 Mar 2009 23:16:00 +0000 (20:16 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Mon, 30 Mar 2009 15:43:18 +0000 (12:43 -0300)
Call pwc_construct before trying to talk to device to obtain vc interface so
that LED and power setup works the first time the video device is opened.

Signed-off-by: Martin Fuzzey <mfuzzey@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/pwc/pwc-if.c

index a7c2e7284c207897d2907b7024ff0e42b644c515..7c542caf248e40ff1647bf0b4c6d6345448affd5 100644 (file)
@@ -1125,6 +1125,7 @@ static int pwc_video_open(struct file *file)
        }
 
        mutex_lock(&pdev->modlock);
+       pwc_construct(pdev); /* set min/max sizes correct */
        if (!pdev->usb_init) {
                PWC_DEBUG_OPEN("Doing first time initialization.\n");
                pdev->usb_init = 1;
@@ -1149,7 +1150,6 @@ static int pwc_video_open(struct file *file)
        if (pwc_set_leds(pdev, led_on, led_off) < 0)
                PWC_DEBUG_OPEN("Failed to set LED on/off time.\n");
 
-       pwc_construct(pdev); /* set min/max sizes correct */
 
        /* So far, so good. Allocate memory. */
        i = pwc_allocate_buffers(pdev);