diff options
author | Nobuhiro Iwamatsu | 2015-10-10 05:58:28 +0900 |
---|---|---|
committer | Nobuhiro Iwamatsu | 2016-08-17 10:25:34 +0900 |
commit | 1cc95f6e1b38e96dfbb5ffb9aec211b1d0a88135 (patch) | |
tree | 4fa7d9cc14f29f62aca55de96fc06157e2b24ba3 /board/renesas/alt | |
parent | 7a7d246d97bc66e01bf030b0503b14f78f08629d (diff) |
ARM: Rmobile: Rename CONFIG_RMOBILE to CONFIG_ARCH_RMOBILE
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'board/renesas/alt')
-rw-r--r-- | board/renesas/alt/alt.c | 2 | ||||
-rw-r--r-- | board/renesas/alt/qos.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/board/renesas/alt/alt.c b/board/renesas/alt/alt.c index 3501a170442..a1a26a6d821 100644 --- a/board/renesas/alt/alt.c +++ b/board/renesas/alt/alt.c @@ -217,7 +217,7 @@ int dram_init(void) } const struct rmobile_sysinfo sysinfo = { - CONFIG_RMOBILE_BOARD_STRING + CONFIG_ARCH_RMOBILE_BOARD_STRING }; void reset_cpu(ulong addr) diff --git a/board/renesas/alt/qos.c b/board/renesas/alt/qos.c index b6324c8fd7c..3323c3aee15 100644 --- a/board/renesas/alt/qos.c +++ b/board/renesas/alt/qos.c @@ -13,7 +13,7 @@ #include <asm/io.h> #include <asm/arch/rmobile.h> -#if defined(CONFIG_RMOBILE_EXTRAM_BOOT) +#if defined(CONFIG_ARCH_RMOBILE_EXTRAM_BOOT) /* QoS version 0.311 for ES1 and version 0.321 for ES2 */ enum { @@ -993,8 +993,8 @@ void qos_init(void) writel(0x00000001, &axi_qos->qosthres2); writel(0x00000001, &axi_qos->qosqon); } -#else /* CONFIG_RMOBILE_EXTRAM_BOOT */ +#else /* CONFIG_ARCH_RMOBILE_EXTRAM_BOOT */ void qos_init(void) { } -#endif /* CONFIG_RMOBILE_EXTRAM_BOOT */ +#endif /* CONFIG_ARCH_RMOBILE_EXTRAM_BOOT */ |