]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
[media] firedtv-avc: Fix compilation warnings
authorMauro Carvalho Chehab <mchehab@redhat.com>
Thu, 24 Nov 2011 17:04:18 +0000 (15:04 -0200)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Thu, 24 Nov 2011 17:04:18 +0000 (15:04 -0200)
drivers/media/dvb/firewire/firedtv-avc.c: In function ‘avc_tuner_tuneqpsk’:
drivers/media/dvb/firewire/firedtv-avc.c:394:4: warning: enumeration value ‘ROLLOFF_15’ not handled in switch [-Wswitch]
drivers/media/dvb/firewire/firedtv-avc.c:394:4: warning: enumeration value ‘ROLLOFF_13’ not handled in switch [-Wswitch]

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/dvb/firewire/firedtv-avc.c

index 489ae8245867bc51d83cfa062c71fc09952531b9..9debf0f9a1378835d54a150cc9e72a025f9e2a90 100644 (file)
@@ -392,10 +392,11 @@ static int avc_tuner_tuneqpsk(struct firedtv *fdtv,
                        default:                c->operand[13] = 0x2; break;
                        }
                        switch (fdtv->fe.dtv_property_cache.rolloff) {
-                       case ROLLOFF_AUTO:      c->operand[14] = 0x2; break;
                        case ROLLOFF_35:        c->operand[14] = 0x2; break;
                        case ROLLOFF_20:        c->operand[14] = 0x0; break;
                        case ROLLOFF_25:        c->operand[14] = 0x1; break;
+                       case ROLLOFF_AUTO:
+                       default:                c->operand[14] = 0x2; break;
                        /* case ROLLOFF_NONE:   c->operand[14] = 0xff; break; */
                        }
                        switch (fdtv->fe.dtv_property_cache.pilot) {