Skip to content

Commit 8581f38

Browse files
frantonypalmer-dabbelt
authored andcommitted
RISC-V: asm/page.h: fix spelling mistake "CONFIG_64BITS" -> "CONFIG_64BIT"
There is no CONFIG_64BITS Kconfig macro. Please see arch/riscv/Kconfig for details, e.g. linux$ git grep -HnA 1 "config 64BIT" arch/riscv/Kconfig arch/riscv/Kconfig:6:config 64BIT arch/riscv/Kconfig-7- bool Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com> Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
1 parent 2bb1063 commit 8581f38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/riscv/include/asm/page.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ typedef struct page *pgtable_t;
8080
#define __pgd(x) ((pgd_t) { (x) })
8181
#define __pgprot(x) ((pgprot_t) { (x) })
8282

83-
#ifdef CONFIG_64BITS
83+
#ifdef CONFIG_64BIT
8484
#define PTE_FMT "%016lx"
8585
#else
8686
#define PTE_FMT "%08lx"

0 commit comments

Comments
 (0)