Message ID | 20230419-const-partition-v2-1-817b58f85cd1@weissschuh.net (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | block: constify some structures of partitions/core.c | expand |
diff --git a/block/partitions/core.c b/block/partitions/core.c index 7b8ef6296abd..890072ae5c7c 100644 --- a/block/partitions/core.c +++ b/block/partitions/core.c @@ -12,7 +12,7 @@ #include <linux/raid/detect.h> #include "check.h" -static int (*check_part[])(struct parsed_partitions *) = { +static int (*const check_part[])(struct parsed_partitions *) = { /* * Probe partition formats with tables at disk address 0 * that also have an ADFS boot block at 0xdc0.
The array is never modified so it can be const. Reported-by: kernel test robot <lkp@intel.com> Link: https://lore.kernel.org/oe-kbuild-all/202304191640.SkNk7kVN-lkp@intel.com/ Signed-off-by: Thomas Weißschuh <linux@weissschuh.net> --- block/partitions/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)