diff options
| author | Bin Meng <bmeng@tinylab.org> | 2022-12-21 19:38:06 +0800 |
|---|---|---|
| committer | Anup Patel <anup@brainfault.org> | 2023-01-06 17:26:35 +0530 |
| commit | 440fa818fbffd0771d75890c4fcda062ceab7ebd (patch) | |
| tree | ddc51462269d7532149eab1bd60000158c37a535 /platform/template | |
| parent | 6b5188ca14e59ce7bf71afe4e7d3d557c3d31bf8 (diff) | |
| download | opensbi-440fa818fbffd0771d75890c4fcda062ceab7ebd.zip opensbi-440fa818fbffd0771d75890c4fcda062ceab7ebd.tar.gz opensbi-440fa818fbffd0771d75890c4fcda062ceab7ebd.tar.bz2 | |
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 <bmeng@tinylab.org>
Reviewed-by: Anup Patel <anup@brainfault.org>
Reviewed-by: Samuel Holland <samuel@sholland.org>
Tested-by: Samuel Holland <samuel@sholland.org>
Diffstat (limited to 'platform/template')
| -rw-r--r-- | platform/template/platform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/template/platform.c b/platform/template/platform.c index f3802da..8adc431 100644 --- a/platform/template/platform.c +++ b/platform/template/platform.c @@ -53,7 +53,7 @@ static struct aclint_mtimer_data mtimer = { .mtimecmp_size = ACLINT_DEFAULT_MTIMECMP_SIZE, .first_hartid = 0, .hart_count = PLATFORM_HART_COUNT, - .has_64bit_mmio = TRUE, + .has_64bit_mmio = true, }; /* |
