diff options
author | Tiezhu Yang <yangtiezhu@loongson.cn> | 2022-03-10 09:50:12 +0300 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2022-03-14 17:09:27 +0300 |
commit | 588d08201c2d91c0b7408eb1deb73f6c8fce9ea3 (patch) | |
tree | d3546c4508e35ea1f451ef82070c06a7d1648bf5 /arch/mips | |
parent | cd04d58e829dd074b0af1c1556c5130227f9f23a (diff) | |
download | linux-588d08201c2d91c0b7408eb1deb73f6c8fce9ea3.tar.xz |
MIPS: Fix wrong comments in asm/prom.h
In arch/mips/include/asm/prom.h, it should use "!CONFIG_USE_OF"
after #else and #endif.
Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/include/asm/prom.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/include/asm/prom.h b/arch/mips/include/asm/prom.h index c42e07671934..2d74406089d7 100644 --- a/arch/mips/include/asm/prom.h +++ b/arch/mips/include/asm/prom.h @@ -20,9 +20,9 @@ struct boot_param_header; extern void __dt_setup_arch(void *bph); extern int __dt_register_buses(const char *bus0, const char *bus1); -#else /* CONFIG_OF */ +#else /* !CONFIG_USE_OF */ static inline void device_tree_init(void) { } -#endif /* CONFIG_OF */ +#endif /* !CONFIG_USE_OF */ extern char *mips_get_machine_name(void); extern void mips_set_machine_name(const char *name); |