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:
Angel Pons 2020-09-25 00:58:07 +02:00
parent 360695ba9e
commit 83b33f62cf
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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)