diff options
author | Stefan Weil <weil@mail.berlios.de> | 2011-09-12 22:33:01 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-09-16 08:25:56 -0500 |
commit | b2bedb214469af55179d907a60cd67fed6b0779e (patch) | |
tree | 45f926e05105467a707f75b9706bc5c1b094cbe9 /target-ppc | |
parent | 937b1258b7748fe9dc2234b6006f216856179636 (diff) | |
download | qemu-b2bedb214469af55179d907a60cd67fed6b0779e.tar.gz qemu-b2bedb214469af55179d907a60cd67fed6b0779e.tar.bz2 qemu-b2bedb214469af55179d907a60cd67fed6b0779e.zip |
Remove blanks before \n in output strings
Those blanks violate the coding conventions, see
scripts/checkpatch.pl.
Blanks missing after colons in the changed lines were added.
This patch does not try to fix tabs, long lines and other
problems in the changed lines, therefore checkpatch.pl reports
many violations.
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'target-ppc')
-rw-r--r-- | target-ppc/helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-ppc/helper.c b/target-ppc/helper.c index 5ec83f2c66..96ea46494a 100644 --- a/target-ppc/helper.c +++ b/target-ppc/helper.c @@ -553,7 +553,7 @@ static inline int get_bat(CPUState *env, mmu_ctx_t *ctx, target_ulong virtual, BEPIl = *BATu & 0x0FFE0000; bl = (*BATu & 0x00001FFC) << 15; LOG_BATS("%s: %cBAT%d v " TARGET_FMT_lx " BATu " TARGET_FMT_lx - " BATl " TARGET_FMT_lx " \n\t" TARGET_FMT_lx " " + " BATl " TARGET_FMT_lx "\n\t" TARGET_FMT_lx " " TARGET_FMT_lx " " TARGET_FMT_lx "\n", __func__, type == ACCESS_CODE ? 'I' : 'D', i, virtual, *BATu, *BATl, BEPIu, BEPIl, bl); |