Commit c3b1c2de2254aa4721e7e3c8d418fa9302e6acb0
Committed by
Ralf Baechle
1 parent
2493921c28
Exists in
master
and in
7 other branches
[MIPS] Fix R4K cache macro names
Several machines have the R4K cache macro name spelled incorrectly. Namely, they have cpu_has_4kcache defined instead of cpu_has_4k_cache. Signed-off-by: Joshua Kinard <kumba@gentoo.org> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Showing 4 changed files with 6 additions and 6 deletions Side-by-side Diff
include/asm-mips/mach-ip22/cpu-feature-overrides.h
include/asm-mips/mach-mips/cpu-feature-overrides.h
... | ... | @@ -17,7 +17,7 @@ |
17 | 17 | #ifdef CONFIG_CPU_MIPS32 |
18 | 18 | #define cpu_has_tlb 1 |
19 | 19 | #define cpu_has_4kex 1 |
20 | -#define cpu_has_4kcache 1 | |
20 | +#define cpu_has_4k_cache 1 | |
21 | 21 | /* #define cpu_has_fpu ? */ |
22 | 22 | /* #define cpu_has_32fpr ? */ |
23 | 23 | #define cpu_has_counter 1 |
... | ... | @@ -47,7 +47,7 @@ |
47 | 47 | #ifdef CONFIG_CPU_MIPS64 |
48 | 48 | #define cpu_has_tlb 1 |
49 | 49 | #define cpu_has_4kex 1 |
50 | -#define cpu_has_4kcache 1 | |
50 | +#define cpu_has_4k_cache 1 | |
51 | 51 | /* #define cpu_has_fpu ? */ |
52 | 52 | /* #define cpu_has_32fpr ? */ |
53 | 53 | #define cpu_has_counter 1 |
include/asm-mips/mach-rm200/cpu-feature-overrides.h
include/asm-mips/mach-sim/cpu-feature-overrides.h
... | ... | @@ -16,7 +16,7 @@ |
16 | 16 | #ifdef CONFIG_CPU_MIPS32 |
17 | 17 | #define cpu_has_tlb 1 |
18 | 18 | #define cpu_has_4kex 1 |
19 | -#define cpu_has_4kcache 1 | |
19 | +#define cpu_has_4k_cache 1 | |
20 | 20 | #define cpu_has_fpu 0 |
21 | 21 | /* #define cpu_has_32fpr ? */ |
22 | 22 | #define cpu_has_counter 1 |
... | ... | @@ -41,7 +41,7 @@ |
41 | 41 | #ifdef CONFIG_CPU_MIPS64 |
42 | 42 | #define cpu_has_tlb 1 |
43 | 43 | #define cpu_has_4kex 1 |
44 | -#define cpu_has_4kcache 1 | |
44 | +#define cpu_has_4k_cache 1 | |
45 | 45 | /* #define cpu_has_fpu ? */ |
46 | 46 | /* #define cpu_has_32fpr ? */ |
47 | 47 | #define cpu_has_counter 1 |