From: Joe Perches Date: Mon, 27 Oct 2014 05:25:05 +0000 (-0700) Subject: tty: ipwireless: Fix probable mask then right shift defects X-Git-Tag: omap-for-v3.20/drop-legacy-3517~83^2~120 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e041abf79c1b555b9d117d4a319b505ee601f55;p=pandora-kernel.git tty: ipwireless: 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 masks. Signed-off-by: Joe Perches Acked-by: David Sterba Reviewed-by: Jiri Kosina Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed