lynxpoint/broadwell: Relegate IOBP printk to BIOS_SPEW
There's no need to make so much noise when writing IOBP registers. Change-Id: I1fbb6e409375240544b9b5e810523f9471435f2f Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/45720 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
This commit is contained in:
parent
360695ba9e
commit
83b33f62cf
|
@ -96,7 +96,7 @@ void pch_iobp_write(u32 address, u32 data)
|
|||
return;
|
||||
}
|
||||
|
||||
printk(BIOS_INFO, "IOBP: set 0x%08x to 0x%08x\n", address, data);
|
||||
printk(BIOS_SPEW, "IOBP: set 0x%08x to 0x%08x\n", address, data);
|
||||
}
|
||||
|
||||
void pch_iobp_update(u32 address, u32 andvalue, u32 orvalue)
|
||||
|
|
|
@ -96,7 +96,7 @@ void pch_iobp_write(u32 address, u32 data)
|
|||
return;
|
||||
}
|
||||
|
||||
printk(BIOS_INFO, "IOBP: set 0x%08x to 0x%08x\n", address, data);
|
||||
printk(BIOS_SPEW, "IOBP: set 0x%08x to 0x%08x\n", address, data);
|
||||
}
|
||||
|
||||
void pch_iobp_update(u32 address, u32 andvalue, u32 orvalue)
|
||||
|
|
Loading…
Reference in New Issue