From: Chen Gang Date: Thu, 30 May 2013 08:21:36 +0000 (+0800) Subject: m68k/math-emu: unsigned issue, 'unsigned long' will never be less than zero X-Git-Tag: omap-for-v3.11/fixes-for-merge-window~37^2~5 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ddc2fc2c5bf459d49c241123112741b99198f473;p=pandora-kernel.git m68k/math-emu: unsigned issue, 'unsigned long' will never be less than zero 'oldmant.m32[1]' is 'unsigned long' which can never be '< 0', and the original author wanted to check whether the highest bit is set. So make the bit test explicit (which is better than casting from 'unsigned long' to 'long'). The related warning: (with EXTRA_CFLAGS=-W ARCH=m68k for allmodconfig) arch/m68k/math-emu/fp_arith.c:522:4: warning: comparison of unsigned expression >= 0 is always true [-Wtype-limits] Signed-off-by: Chen Gang Signed-off-by: Geert Uytterhoeven --- Reading git-diff-tree failed