Commit e16cede5 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

[media] drxk: Return -EINVAL if an invalid bandwidth is used



drivers/media/dvb/frontends/drxk_hard.c: In function ‘SetDVBT’:
drivers/media/dvb/frontends/drxk_hard.c:3766: warning: enumeration value ‘BANDWIDTH_5_MHZ’ not handled in switch
drivers/media/dvb/frontends/drxk_hard.c:3766: warning: enumeration value ‘BANDWIDTH_10_MHZ’ not handled in switch
drivers/media/dvb/frontends/drxk_hard.c:3766: warning: enumeration value ‘BANDWIDTH_1_712_MHZ’ not handled in switch

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 469ffe08
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -3822,6 +3822,8 @@ static int SetDVBT(struct drxk_state *state, u16 IntermediateFreqkHz,
			if (status < 0)
				break;
			break;
		default:
			return -EINVAL;
		}

		if (iqmRcRateOfs == 0) {