V4L/DVB (6787): tuner: bug-fix: default mode was set to bogus value
authorMichael Krufky <mkrufky@linuxtv.org>
Sun, 9 Dec 2007 20:21:54 +0000 (17:21 -0300)
committerMauro Carvalho Chehab <mchehab@infradead.org>
Fri, 25 Jan 2008 21:03:29 +0000 (19:03 -0200)
Fix type inconsistency in t->mode value, causing the following:

tuner' 1-0043: freq set: unknown mode: 0x0004!

(only visible with tuner debug enabled)

Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
drivers/media/video/tuner-core.c

index 59e67c9..355f981 100644 (file)
@@ -1138,11 +1138,11 @@ register_client:
 
        /* Sets a default mode */
        if (t->mode_mask & T_ANALOG_TV) {
-               t->mode = T_ANALOG_TV;
+               t->mode = V4L2_TUNER_ANALOG_TV;
        } else  if (t->mode_mask & T_RADIO) {
-               t->mode = T_RADIO;
+               t->mode = V4L2_TUNER_RADIO;
        } else {
-               t->mode = T_DIGITAL_TV;
+               t->mode = V4L2_TUNER_DIGITAL_TV;
        }
        set_type(client, t->type, t->mode_mask, t->config, t->tuner_callback);
        list_add_tail(&t->list, &tuner_list);