From 1bbda9b26fd4246c76beceeabe9893acea9e3ee9 Mon Sep 17 00:00:00 2001 From: Samuel Holland Date: Tue, 30 Jul 2024 21:58:49 -0700 Subject: lib: utils/regmap: Constify FDT pointers in parsing functions Indicate that none of these functions modify the devicetree by constifying the parameter type. Signed-off-by: Samuel Holland Reviewed-by: Andrew Jones Reviewed-by: Anup Patel --- include/sbi_utils/regmap/fdt_regmap.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include') diff --git a/include/sbi_utils/regmap/fdt_regmap.h b/include/sbi_utils/regmap/fdt_regmap.h index 403dd7d4..86e72442 100644 --- a/include/sbi_utils/regmap/fdt_regmap.h +++ b/include/sbi_utils/regmap/fdt_regmap.h @@ -17,15 +17,15 @@ struct fdt_phandle_args; /** FDT based regmap driver */ struct fdt_regmap { const struct fdt_match *match_table; - int (*init)(void *fdt, int nodeoff, u32 phandle, + int (*init)(const void *fdt, int nodeoff, u32 phandle, const struct fdt_match *match); }; /** Get regmap instance based on phandle */ -int fdt_regmap_get_by_phandle(void *fdt, u32 phandle, +int fdt_regmap_get_by_phandle(const void *fdt, u32 phandle, struct regmap **out_rmap); /** Get regmap instance based on "regmap" property of the specified DT node */ -int fdt_regmap_get(void *fdt, int nodeoff, struct regmap **out_rmap); +int fdt_regmap_get(const void *fdt, int nodeoff, struct regmap **out_rmap); #endif -- cgit v1.3.1