lkml.org 
[lkml]   [2018]   [Mar]   [19]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] KEYS: fix const section declaration in certs blacklist
Date
Use __initconst, not __initdata also in header file.

This fixes a warning generated by clang:
certs/blacklist_nohashes.c:4:12: warning: section does not match
previous declaration [-Wsection]
const char __initconst *const blacklist_hashes[] = {
^
..
certs/blacklist.h:3:19: note: previous attribute is here
extern const char __initdata *const blacklist_hashes[];
^

Cc: Andi Kleen <ak@linux.intel.com>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: Stefan Agner <stefan@agner.ch>
---
certs/blacklist.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/certs/blacklist.h b/certs/blacklist.h
index 150d82da8e99..1efd6fa0dc60 100644
--- a/certs/blacklist.h
+++ b/certs/blacklist.h
@@ -1,3 +1,3 @@
#include <linux/kernel.h>

-extern const char __initdata *const blacklist_hashes[];
+extern const char __initconst *const blacklist_hashes[];
--
2.16.2
\
 
 \ /
  Last update: 2018-03-19 23:09    [W:0.024 / U:1.296 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site