From: Mauro Carvalho Chehab Date: Fri, 30 Dec 2011 17:34:51 +0000 (-0200) Subject: [media] tda18271c2dd: fix support for DVB-C X-Git-Tag: v3.12-rc1~3230^2~484 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1ca8dde859844c50e043182060acf14be5288463;p=kernel%2Fkernel-generic.git [media] tda18271c2dd: fix support for DVB-C As reported by Hartmut : > A break is missing before the default statement. Delivery systems for DVB-C result always > in an error. Reported-by: Hartmut Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/dvb/frontends/tda18271c2dd.c b/drivers/media/dvb/frontends/tda18271c2dd.c index 0f8e962..f8933cf 100644 --- a/drivers/media/dvb/frontends/tda18271c2dd.c +++ b/drivers/media/dvb/frontends/tda18271c2dd.c @@ -1159,6 +1159,7 @@ static int set_params(struct dvb_frontend *fe, Standard = HF_DVBC_7MHZ; else Standard = HF_DVBC_8MHZ; + break; default: return -EINVAL; }