From: Dan Carpenter Date: Sat, 9 Jun 2012 09:17:01 +0000 (+0300) Subject: Staging: et131x: fix | vs & typos X-Git-Tag: v3.6-rc1~100^2~883 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b5b86a4d99f48e5ac28c19ae2a00415e26a7ac1a;p=pandora-kernel.git Staging: et131x: fix | vs & typos These two places seem like they should be using bitwise OR instead of bitwise AND. The first one is a noop which is equivalent to: imr |= (0x0100 & 0x0004 & 0x0001); The second is sets lcr2 to zero instead of just clearing the high bits. lcr2 &= (0x00F0 & 0x000F); Signed-off-by: Dan Carpenter Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed