From: YueHaibing Date: Fri, 21 Feb 2020 13:55:15 +0000 (+0800) Subject: crypto: md5 - remove unused macros X-Git-Tag: v5.7-rc1~140^2~79 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2fdddaf089ef4917e15eefacca2fa2e91e819683;p=thirdparty%2Flinux.git 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 Signed-off-by: Herbert Xu --- diff --git a/crypto/md5.c b/crypto/md5.c index 22dc60bc04375..72c0c46fb5eea 100644 --- a/crypto/md5.c +++ b/crypto/md5.c @@ -23,9 +23,6 @@ #include #include -#define MD5_DIGEST_WORDS 4 -#define MD5_MESSAGE_BYTES 64 - const u8 md5_zero_message_hash[MD5_DIGEST_SIZE] = { 0xd4, 0x1d, 0x8c, 0xd9, 0x8f, 0x00, 0xb2, 0x04, 0xe9, 0x80, 0x09, 0x98, 0xec, 0xf8, 0x42, 0x7e,