summaryrefslogtreecommitdiff
path: root/tprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'tprintf.c')
0 files changed, 0 insertions, 0 deletions
href='/cgit.cgi/linux/net-next.git/diff/?id=101b29a204f87c99377faa53bd378f101ebb1824&id2=61c04572de404e52a655a36752e696bbcb483cf5'>diff)
byteswap: don't use __builtin_bswap*() with sparse
Although sparse declares __builtin_bswap*(), it can't actually do constant folding inside them (yet). As such, things like switch (protocol) { case htons(ETH_P_IP): break; } which we do all over the place cause sparse to warn that it expects a constant instead of a function call. Disable __HAVE_BUILTIN_BSWAP*__ if __CHECKER__ is defined to avoid this. Fixes: 7322dd755e7d ("byteswap: try to avoid __builtin_constant_p gcc bug") Link: http://lkml.kernel.org/r/1470914102-26389-1-git-send-email-johannes@sipsolutions.net Signed-off-by: Johannes Berg <johannes.berg@intel.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat