From: David S. Miller Date: Thu, 17 Nov 2005 23:17:42 +0000 (-0800) Subject: [LLC]: Fix compiler warnings introduced by TX window scaling changes. X-Git-Tag: v2.6.15-rc2~39^2~2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=381998241fd1fc635596f4e8ae835f0d64ca1ba2;p=pandora-kernel.git [LLC]: Fix compiler warnings introduced by TX window scaling changes. Noticed by Olaf Hering. The comparisons want a u8 here (the data type on the left-hand branch is a u8 structure member, and the constant on the right-hand branch is "~((u8) 128)"), but C turns it into an integer so we get: net/llc/llc_c_ac.c: In function `llc_conn_ac_inc_npta_value': net/llc/llc_c_ac.c:998: warning: comparison is always true due to limited range of data type net/llc/llc_c_ac.c:999: warning: large integer implicitly truncated to unsigned type Fix this up by explicitly recasting the right-hand branch constant into a "u8" once more. Signed-off-by: David S. Miller --- Reading git-diff-tree failed