From: Arnd Bergmann Date: Sat, 4 Aug 2012 21:53:26 +0000 (+0000) Subject: asm-generic: xor: mark static functions as __maybe_unused X-Git-Tag: v3.7-rc1~78^2~2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=720fb1976d38bccf910d477c2df364948abdb359;p=pandora-kernel.git asm-generic: xor: mark static functions as __maybe_unused The asm-generic/xor.h header file is nasty and defines static functions that are not inline. The header file is include by the ARM version of asm/xor.h, which uses some but not all of the symbols defined there. Marking the extraneous functions as __maybe_unused lets gcc drop them without complaining. Without this patch, building iop13xx_defconfig results in: include/asm-generic/xor.h:696:34: warning: 'xor_block_8regs_p' defined but not used [-Wunused-variable] include/asm-generic/xor.h:704:34: warning: 'xor_block_32regs_p' defined but not used [-Wunused-variable] Signed-off-by: Arnd Bergmann Cc: Herbert Xu Cc: Dan Williams Cc: Neil Brown --- Reading git-diff-tree failed