[media] dvb-net: Fix probable mask then right shift defects
authorJoe Perches <joe@perches.com>
Mon, 27 Oct 2014 05:25:00 +0000 (02:25 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Mon, 3 Nov 2014 14:40:10 +0000 (12:40 -0200)
commitf491dbe049cc7d8fb4c1cdc7d9fdfac0d1d99869
treeb1d6bded805070e95ed833bb63270e9edbc212d9
parente5f3d00c243177f4d7a0e86d17b7eaefd4a0c908
[media] dvb-net: Fix probable mask then right shift defects

Precedence of & and >> is not the same and is not left to right.
shift has higher precedence and should be done after the mask.

Add parentheses around the mask.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/dvb-core/dvb_net.c