[PATCH 17/17] dm: Fix const confusion in dm

From: Andi Kleen
Date: Thu Mar 21 2019 - 18:01:34 EST


From: Andi Kleen <ak@xxxxxxxxxxxxxxx>

A non const pointer to const cannot be marked initconst.
Mark the array actually const.

Cc: helen.koike@xxxxxxxxxxxxx
Cc: snitzer@xxxxxxxxxx
Cc: wad@xxxxxxxxxxxx
Cc: keescook@xxxxxxxxxxxx
Cc: enric.balletbo@xxxxxxxxxxxxx
Fixes: 6bbc923dfcf5 dm: add support to directly boot to a mapped device
Signed-off-by: Andi Kleen <ak@xxxxxxxxxxxxxxx>
---
drivers/md/dm-init.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/md/dm-init.c b/drivers/md/dm-init.c
index b53f30f16b4d..4b76f84424c3 100644
--- a/drivers/md/dm-init.c
+++ b/drivers/md/dm-init.c
@@ -36,7 +36,7 @@ struct dm_device {
struct list_head list;
};

-const char *dm_allowed_targets[] __initconst = {
+const char * const dm_allowed_targets[] __initconst = {
"crypt",
"delay",
"linear",
--
2.20.1