aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSamuel Holland <samuel.holland@sifive.com>2024-07-30 21:58:55 -0700
committerAnup Patel <anup@brainfault.org>2024-08-24 13:02:58 +0530
commitfa6dfce017eed32cbae2581bc285bafd52929d42 (patch)
treef8e1432ddaeb28e5e94b078cc941351460922a2e /include
parent6e5db7b09c6c25be59900a3470923727a4e14033 (diff)
downloadopensbi-fa6dfce017eed32cbae2581bc285bafd52929d42.zip
opensbi-fa6dfce017eed32cbae2581bc285bafd52929d42.tar.gz
opensbi-fa6dfce017eed32cbae2581bc285bafd52929d42.tar.bz2
lib: utils/reset: Pass the FDT to fdt_reset_init()
Indicate that this function does not modify the FDT blob, and deduplicate the call to fdt_get_address(). Signed-off-by: Samuel Holland <samuel.holland@sifive.com> Reviewed-by: Andrew Jones <ajones@ventanamicro.com> Reviewed-by: Anup Patel <anup@brainfault.org>
Diffstat (limited to 'include')
-rw-r--r--include/sbi_utils/reset/fdt_reset.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sbi_utils/reset/fdt_reset.h b/include/sbi_utils/reset/fdt_reset.h
index 8017987..f126fd3 100644
--- a/include/sbi_utils/reset/fdt_reset.h
+++ b/include/sbi_utils/reset/fdt_reset.h
@@ -29,7 +29,7 @@ int fdt_reset_driver_init(const void *fdt, struct fdt_reset *drv);
*
* This function shall be invoked in final init.
*/
-void fdt_reset_init(void);
+void fdt_reset_init(const void *fdt);
#else
@@ -37,7 +37,7 @@ static inline int fdt_reset_driver_init(const void *fdt, struct fdt_reset *drv)
{
return 0;
}
-static inline void fdt_reset_init(void) { }
+static inline void fdt_reset_init(const void *fdt) { }
#endif