From 440fa818fbffd0771d75890c4fcda062ceab7ebd Mon Sep 17 00:00:00 2001 From: Bin Meng Date: Wed, 21 Dec 2022 19:38:06 +0800 Subject: treewide: Replace TRUE/FALSE with true/false C language standard uses true/false for the boolean type. Let's switch to that for better language compatibility. Signed-off-by: Bin Meng Reviewed-by: Anup Patel Reviewed-by: Samuel Holland Tested-by: Samuel Holland --- platform/generic/sifive/fu740.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'platform/generic') diff --git a/platform/generic/sifive/fu740.c b/platform/generic/sifive/fu740.c index f595c048..fe71ce6a 100644 --- a/platform/generic/sifive/fu740.c +++ b/platform/generic/sifive/fu740.c @@ -205,7 +205,7 @@ static int da9063_reset_init(void *fdt, int nodeoff, } static const struct fdt_match da9063_reset_match[] = { - { .compatible = "dlg,da9063", .data = (void *)TRUE }, + { .compatible = "dlg,da9063", .data = (void *)true }, { }, }; -- cgit v1.3.1