From: Herbert Xu Date: Thu, 23 Apr 2015 06:48:05 +0000 (+0800) Subject: crypto: api - Fix build error when modules are disabled X-Git-Tag: firefly_0821_release~176^2~1617^2~236 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=bd4a7c69aaed79ae1a299db8063fe4daf5e4a2f1;p=firefly-linux-kernel-4.4.55.git crypto: api - Fix build error when modules are disabled The commit 59afdc7b32143528524455039e7557a46b60e4c8 ("crypto: api - Move module sig ifdef into accessor function") broke the build when modules are completely disabled because we directly dereference module->name. This patch fixes this by using the accessor function module_name. Reported-by: Fengguang Wu Signed-off-by: Herbert Xu --- diff --git a/crypto/algapi.c b/crypto/algapi.c index c63836f4ff64..3103e6a1282e 100644 --- a/crypto/algapi.c +++ b/crypto/algapi.c @@ -46,7 +46,7 @@ static inline void crypto_check_module_sig(struct module *mod) { if (fips_enabled && mod && !module_sig_ok(mod)) panic("Module %s signature verification failed in FIPS mode\n", - mod->name); + module_name(mod)); } static int crypto_check_alg(struct crypto_alg *alg)