Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

crypto: md5 - remove unused macros

crypto/md5.c:26:0: warning: macro "MD5_DIGEST_WORDS" is not used [-Wunused-macros]
crypto/md5.c:27:0: warning: macro "MD5_MESSAGE_BYTES" is not used [-Wunused-macros]

They are never used since commit 3c7eb3cc8360 ("md5: remove from
lib and only live in crypto").

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

authored by

YueHaibing and committed by
Herbert Xu
2fdddaf0 6ff78ffa

-3
-3
crypto/md5.c
··· 23 23 #include <linux/types.h> 24 24 #include <asm/byteorder.h> 25 25 26 - #define MD5_DIGEST_WORDS 4 27 - #define MD5_MESSAGE_BYTES 64 28 - 29 26 const u8 md5_zero_message_hash[MD5_DIGEST_SIZE] = { 30 27 0xd4, 0x1d, 0x8c, 0xd9, 0x8f, 0x00, 0xb2, 0x04, 31 28 0xe9, 0x80, 0x09, 0x98, 0xec, 0xf8, 0x42, 0x7e,