From: Mark Einon Date: Fri, 19 Oct 2012 22:08:15 +0000 (+0100) Subject: staging: et131x: Use upper_32_bits() instead of '>> 32' X-Git-Tag: omap-for-v3.8/fixes-for-merge-window-v4-signed~84^2~1064 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25e8e8ab55c86f61f8c3bf3e361d881895317f80;p=pandora-kernel.git staging: et131x: Use upper_32_bits() instead of '>> 32' '>> 32 of a 32bit value is undefined in C. The compiler is free to do what it likes with this...' Change all uses of '>> 32' to use upper_32_bits() and use the corresponding lower_32_bits() to match. Also remove an incorrect comment about dma alloc always returning 32bit addresses. Signed-off-by: Mark Einon Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed