[MIPS] SB1: Fix pile of gcc's bogus format string warnings.

CC arch/mips/mm/cerr-sb1.o
arch/mips/mm/cerr-sb1.c: In function 'sb1_cache_error':
arch/mips/mm/cerr-sb1.c:235: warning: format '%010llx' expects type 'long long unsigned int', but argument 2 has type 'uint64_t'
arch/mips/mm/cerr-sb1.c: In function 'extract_ic':
arch/mips/mm/cerr-sb1.c:385: warning: format '%016llx' expects type 'long long unsigned int', but argument 3 has type 'uint64_t'
arch/mips/mm/cerr-sb1.c:385: warning: format '%016llX' expects type 'long long unsigned int', but argument 6 has type 'uint64_t'
arch/mips/mm/cerr-sb1.c: In function 'extract_dc':
arch/mips/mm/cerr-sb1.c:523: warning: format '%010llx' expects type 'long long unsigned int', but argument 3 has type 'uint64_t'
arch/mips/mm/cerr-sb1.c:523: warning: format '%016llX' expects type 'long long unsigned int', but argument 7 has type 'uint64_t'
arch/mips/mm/cerr-sb1.c:570: warning: format '%016llX' expects type 'long long unsigned int', but argument 3 has type 'uint64_t'
LD arch/mips/mm/built-in.o

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>

+5 -4
+5 -4
arch/mips/mm/cerr-sb1.c
··· 177 177 178 178 asmlinkage void sb1_cache_error(void) 179 179 { 180 - uint64_t cerr_dpa; 181 180 uint32_t errctl, cerr_i, cerr_d, dpalo, dpahi, eepc, res; 181 + unsigned long long cerr_dpa; 182 182 183 183 #ifdef CONFIG_SIBYTE_BW_TRACE 184 184 /* Freeze the trace buffer now */ ··· 329 329 { 330 330 unsigned short way; 331 331 int valid; 332 - uint64_t taglo, va, tlo_tmp; 333 332 uint32_t taghi, taglolo, taglohi; 333 + unsigned long long taglo, va; 334 + uint64_t tlo_tmp; 334 335 uint8_t lru; 335 336 int res = 0; 336 337 ··· 485 484 { 486 485 int valid, way; 487 486 unsigned char state; 488 - uint64_t taglo, pa; 489 487 uint32_t taghi, taglolo, taglohi; 488 + unsigned long long taglo, pa; 490 489 uint8_t ecc, lru; 491 490 int res = 0; 492 491 ··· 536 535 } 537 536 538 537 if (data) { 539 - uint64_t datalo; 540 538 uint32_t datalohi, datalolo, datahi; 539 + unsigned long long datalo; 541 540 int offset; 542 541 char bad_ecc = 0; 543 542