northbridge/intel/e7501: Add space around operators
Change-Id: I53aa17076135e55665f2f7c6ede217388fc50cca Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/16633 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
d4fea5c675
commit
f352e2fab8
|
@ -148,7 +148,7 @@ static inline void dump_io_resources(unsigned port)
|
|||
{
|
||||
int i;
|
||||
printk(BIOS_DEBUG, "%04x:\n", port);
|
||||
for (i=0;i<256;i++) {
|
||||
for (i = 0; i < 256; i++) {
|
||||
uint8_t val;
|
||||
if ((i & 0x0f) == 0)
|
||||
printk(BIOS_DEBUG, "%02x:", i);
|
||||
|
@ -165,7 +165,7 @@ static inline void dump_mem(unsigned start, unsigned end)
|
|||
{
|
||||
unsigned i;
|
||||
printk(BIOS_DEBUG, "dump_mem:");
|
||||
for (i=start;i<end;i++) {
|
||||
for (i = start; i < end; i++) {
|
||||
if ((i & 0xf)==0)
|
||||
printk(BIOS_DEBUG, "\n%08x:", i);
|
||||
printk(BIOS_DEBUG, " %02x", (unsigned char)*((unsigned char *)i));
|
||||
|
|
Loading…
Reference in New Issue