summaryrefslogtreecommitdiff
path: root/include/sbi_utils
diff options
context:
space:
mode:
authorSamuel Holland <samuel@sholland.org>2022-05-29 21:32:11 +0300
committerAnup Patel <anup@brainfault.org>2022-05-30 08:02:35 +0300
commitfab0379bb60d6e177018b53f07718b69ba34948d (patch)
tree780d1bdbb8ea444a227e7a3b9c1972014b92404b /include/sbi_utils
parentf067bb84cf2dd6493ff3fa49294d3ec80481ad75 (diff)
downloadopensbi-fab0379bb60d6e177018b53f07718b69ba34948d.tar.xz
lib: utils/fdt: Require match data to be const
Match data stores hardware attributes which do not change at runtime, so it does not need to be mutable. Make it const. Reviewed-by: Guo Ren <guoren@kernel.org> Reviewed-by: Xiang W <wxjstz@126.com> Reviewed-by: Anup Patel <anup@brainfault.org> Signed-off-by: Samuel Holland <samuel@sholland.org>
Diffstat (limited to 'include/sbi_utils')
-rw-r--r--include/sbi_utils/fdt/fdt_helper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sbi_utils/fdt/fdt_helper.h b/include/sbi_utils/fdt/fdt_helper.h
index 74ea234..c60af35 100644
--- a/include/sbi_utils/fdt/fdt_helper.h
+++ b/include/sbi_utils/fdt/fdt_helper.h
@@ -15,7 +15,7 @@
struct fdt_match {
const char *compatible;
- void *data;
+ const void *data;
};
#define FDT_MAX_PHANDLE_ARGS 16