summaryrefslogtreecommitdiff
path: root/arch/arm64/include/asm/setup.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm64/include/asm/setup.h')
-rw-r--r--arch/arm64/include/asm/setup.h20
1 files changed, 15 insertions, 5 deletions
diff --git a/arch/arm64/include/asm/setup.h b/arch/arm64/include/asm/setup.h
index f4af547ef54c..3d96dde4d214 100644
--- a/arch/arm64/include/asm/setup.h
+++ b/arch/arm64/include/asm/setup.h
@@ -7,9 +7,6 @@
#include <uapi/asm/setup.h>
-void *get_early_fdt_ptr(void);
-void early_fdt_map(u64 dt_phys);
-
/*
* These two variables are used in the head.S file.
*/
@@ -21,9 +18,22 @@ static inline bool arch_parse_debug_rodata(char *arg)
extern bool rodata_enabled;
extern bool rodata_full;
- if (arg && !strcmp(arg, "full")) {
+ if (!arg)
+ return false;
+
+ if (!strcmp(arg, "on")) {
+ rodata_enabled = rodata_full = true;
+ return true;
+ }
+
+ if (!strcmp(arg, "off")) {
+ rodata_enabled = rodata_full = false;
+ return true;
+ }
+
+ if (!strcmp(arg, "noalias")) {
rodata_enabled = true;
- rodata_full = true;
+ rodata_full = false;
return true;
}