diff options
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/kernel/head_64.S | 2 | ||||
-rw-r--r-- | arch/powerpc/kernel/setup_64.c | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/arch/powerpc/kernel/head_64.S b/arch/powerpc/kernel/head_64.S index e9963d9f335a..3065b472b95d 100644 --- a/arch/powerpc/kernel/head_64.S +++ b/arch/powerpc/kernel/head_64.S | |||
@@ -1748,7 +1748,7 @@ _STATIC(__after_prom_start) | |||
1748 | _GLOBAL(copy_and_flush) | 1748 | _GLOBAL(copy_and_flush) |
1749 | addi r5,r5,-8 | 1749 | addi r5,r5,-8 |
1750 | addi r6,r6,-8 | 1750 | addi r6,r6,-8 |
1751 | 4: li r0,16 /* Use the least common */ | 1751 | 4: li r0,8 /* Use the smallest common */ |
1752 | /* denominator cache line */ | 1752 | /* denominator cache line */ |
1753 | /* size. This results in */ | 1753 | /* size. This results in */ |
1754 | /* extra cache line flushes */ | 1754 | /* extra cache line flushes */ |
diff --git a/arch/powerpc/kernel/setup_64.c b/arch/powerpc/kernel/setup_64.c index 77efe19ccd2c..00d6b8addd78 100644 --- a/arch/powerpc/kernel/setup_64.c +++ b/arch/powerpc/kernel/setup_64.c | |||
@@ -78,10 +78,10 @@ u64 ppc64_pft_size; | |||
78 | * before we've read this from the device tree. | 78 | * before we've read this from the device tree. |
79 | */ | 79 | */ |
80 | struct ppc64_caches ppc64_caches = { | 80 | struct ppc64_caches ppc64_caches = { |
81 | .dline_size = 0x80, | 81 | .dline_size = 0x40, |
82 | .log_dline_size = 7, | 82 | .log_dline_size = 6, |
83 | .iline_size = 0x80, | 83 | .iline_size = 0x40, |
84 | .log_iline_size = 7 | 84 | .log_iline_size = 6 |
85 | }; | 85 | }; |
86 | EXPORT_SYMBOL_GPL(ppc64_caches); | 86 | EXPORT_SYMBOL_GPL(ppc64_caches); |
87 | 87 | ||