aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/mm/page.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2013-01-22 06:59:30 -0500
committerRalf Baechle <ralf@linux-mips.org>2013-02-01 04:00:22 -0500
commit7034228792cc561e79ff8600f02884bd4c80e287 (patch)
tree89b77af37d087d9de236fc5d21f60bf552d0a2c6 /arch/mips/mm/page.c
parent405ab01c70e18058d9c01a1256769a61fc65413e (diff)
MIPS: Whitespace cleanup.
Having received another series of whitespace patches I decided to do this once and for all rather than dealing with this kind of patches trickling in forever. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mm/page.c')
-rw-r--r--arch/mips/mm/page.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/mm/page.c b/arch/mips/mm/page.c
index 8e666c55f4d4..a29fba55b53e 100644
--- a/arch/mips/mm/page.c
+++ b/arch/mips/mm/page.c
@@ -271,7 +271,7 @@ void __cpuinit build_clear_page(void)
271 uasm_i_lui(&buf, AT, 0xa000); 271 uasm_i_lui(&buf, AT, 0xa000);
272 272
273 off = cache_line_size ? min(8, pref_bias_clear_store / cache_line_size) 273 off = cache_line_size ? min(8, pref_bias_clear_store / cache_line_size)
274 * cache_line_size : 0; 274 * cache_line_size : 0;
275 while (off) { 275 while (off) {
276 build_clear_pref(&buf, -off); 276 build_clear_pref(&buf, -off);
277 off -= cache_line_size; 277 off -= cache_line_size;
@@ -417,13 +417,13 @@ void __cpuinit build_copy_page(void)
417 uasm_i_lui(&buf, AT, 0xa000); 417 uasm_i_lui(&buf, AT, 0xa000);
418 418
419 off = cache_line_size ? min(8, pref_bias_copy_load / cache_line_size) * 419 off = cache_line_size ? min(8, pref_bias_copy_load / cache_line_size) *
420 cache_line_size : 0; 420 cache_line_size : 0;
421 while (off) { 421 while (off) {
422 build_copy_load_pref(&buf, -off); 422 build_copy_load_pref(&buf, -off);
423 off -= cache_line_size; 423 off -= cache_line_size;
424 } 424 }
425 off = cache_line_size ? min(8, pref_bias_copy_store / cache_line_size) * 425 off = cache_line_size ? min(8, pref_bias_copy_store / cache_line_size) *
426 cache_line_size : 0; 426 cache_line_size : 0;
427 while (off) { 427 while (off) {
428 build_copy_store_pref(&buf, -off); 428 build_copy_store_pref(&buf, -off);
429 off -= cache_line_size; 429 off -= cache_line_size;