cimx/sb800/cfg.c: Cut out purposeless ROM reading noise.
Follow along hudson, cut out "SLP_TYP type was 0" excessively filling the buffer. We could make this conditional on non-zero? Change-Id: Iffd4c146b2ac4f57dbc3a011a683c92b6e132e39 Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-on: http://review.coreboot.org/5495 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
parent
b4417fb139
commit
10b834374b
@ -31,7 +31,7 @@ int acpi_get_sleep_type(void)
|
|||||||
{
|
{
|
||||||
u16 tmp = inw(PM1_CNT_BLK_ADDRESS);
|
u16 tmp = inw(PM1_CNT_BLK_ADDRESS);
|
||||||
tmp = ((tmp & (7 << 10)) >> 10);
|
tmp = ((tmp & (7 << 10)) >> 10);
|
||||||
printk(BIOS_DEBUG, "SLP_TYP type was %x\n", tmp);
|
/* printk(BIOS_DEBUG, "SLP_TYP type was %x\n", tmp); */
|
||||||
return (int)tmp;
|
return (int)tmp;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user