aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Kleen <[email protected]>2018-02-21 14:45:35 -0800
committerLinus Torvalds <[email protected]>2018-02-21 15:35:43 -0800
commit2be04df5668d81f9a98e57b81bc53f72bd5f4f92 (patch)
tree560716c8f5fc9193e860d7e9f99d58a15947436c
parent88913bd8ea2a75d7e460a4bed5f75e1c32660d7e (diff)
certs/blacklist_nohashes.c: fix const confusion in certs blacklist
const must be marked __initconst, not __initdata. Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Andi Kleen <[email protected]> Reviewed-by: Andrew Morton <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--certs/blacklist_nohashes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/certs/blacklist_nohashes.c b/certs/blacklist_nohashes.c
index 73fd99098ad7..753b703ef0ef 100644
--- a/certs/blacklist_nohashes.c
+++ b/certs/blacklist_nohashes.c
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: GPL-2.0
#include "blacklist.h"
-const char __initdata *const blacklist_hashes[] = {
+const char __initconst *const blacklist_hashes[] = {
NULL
};