mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
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>
This commit is contained in:
parent
937b1258b7
commit
b2bedb2144
16 changed files with 41 additions and 41 deletions
|
@ -118,7 +118,7 @@ mst_fpga_readb(void *opaque, target_phys_addr_t addr)
|
|||
return s->pcmcia1;
|
||||
default:
|
||||
printf("Mainstone - mst_fpga_readb: Bad register offset "
|
||||
"0x" TARGET_FMT_plx " \n", addr);
|
||||
"0x" TARGET_FMT_plx "\n", addr);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
@ -171,7 +171,7 @@ mst_fpga_writeb(void *opaque, target_phys_addr_t addr, uint32_t value)
|
|||
break;
|
||||
default:
|
||||
printf("Mainstone - mst_fpga_writeb: Bad register offset "
|
||||
"0x" TARGET_FMT_plx " \n", addr);
|
||||
"0x" TARGET_FMT_plx "\n", addr);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue