From acc26f85f32c68a51e5cc7b613cd0ea0b0630505 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Fri, 7 Jan 2022 20:50:16 +0200 Subject: Use #if defined(...) when not guard clause --- common/fdt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common/fdt.c') diff --git a/common/fdt.c b/common/fdt.c index f76ad64..7cec3a4 100644 --- a/common/fdt.c +++ b/common/fdt.c @@ -1,6 +1,6 @@ #include -struct cell_info get_cellinfo(void *fdt, int offset) +struct cell_info get_cellinfo(const void *fdt, const int offset) { return (struct cell_info){ fdt_size_cells(fdt, offset), @@ -9,7 +9,7 @@ struct cell_info get_cellinfo(void *fdt, int offset) } /* how "reg" is interpreted depends on the parent node */ -struct cell_info get_reginfo(void *fdt, const char *path) +struct cell_info get_reginfo(const void *fdt, const char *path) { const char *i = strrchr(path, '/'); if(!i) -- cgit v1.3