From: Nickolai Zeldovich Date: Thu, 17 Jan 2013 07:18:29 +0000 (+0000) Subject: 3c574_cs: fix operator precedence between << and & X-Git-Tag: v3.8-rc6~20^2~44 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13b6d2e6c25dd33f94873b771ad7de3550da5125;p=pandora-kernel.git 3c574_cs: fix operator precedence between << and & The code to print the FIFO size in tc574_config computes it as: 8 << config & Ram_size which evaluates the '<<' first, but the actual intent is to evaluate the '&' first. Add parentheses to enforce desired evaluation order. Signed-off-by: Nickolai Zeldovich Signed-off-by: David S. Miller --- Reading git-diff-tree failed