[PATCH 1/4] block: constify partition prober array

From: Thomas Weißschuh
Date: Wed Apr 19 2023 - 03:51:05 EST


The array is never modified so it can be const.

Signed-off-by: Thomas Weißschuh <linux@xxxxxxxxxxxxxx>
---
block/partitions/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/block/partitions/core.c b/block/partitions/core.c
index 7b8ef6296abd..667f3dcebd59 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 const int (*check_part[])(struct parsed_partitions *) = {
/*
* Probe partition formats with tables at disk address 0
* that also have an ADFS boot block at 0xdc0.

--
2.40.0