]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
fsl_law: Fix LAW printing function
authorKumar Gala <galak@kernel.crashing.org>
Sat, 12 Feb 2011 21:34:08 +0000 (15:34 -0600)
committerKumar Gala <galak@kernel.crashing.org>
Wed, 23 Feb 2011 05:25:19 +0000 (23:25 -0600)
We had an extra '0x' in the output of the LAWAR header that would cause
output like:

LAWBAR11: 0x00000000 LAWAR0x11: 0x80f0001d

intead of:

LAWBAR11: 0x00000000 LAWAR11: 0x80f0001d

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
drivers/misc/fsl_law.c

index 63c08bf2ffca33360b7adf4aa9b06c3ebf131993..031c9748f4d0692a2707ea7689c0b778a5055714 100644 (file)
@@ -182,7 +182,7 @@ void print_laws(void)
 #else
                printf("LAWBAR%02d: 0x%08x", i, in_be32(LAWBAR_ADDR(i)));
 #endif
-               printf(" LAWAR0x%02d: 0x%08x\n", i, lawar);
+               printf(" LAWAR%02d: 0x%08x\n", i, lawar);
                printf("\t(EN: %d TGT: 0x%02x SIZE: ",
                       (lawar & LAW_EN) ? 1 : 0, (lawar >> 20) & 0xff);
                print_size(lawar_size(lawar), ")\n");