AMD Geode CS5536: downgrade BIOS_ERR

There is no need to use everywhere BIOS_ERR.

Change-Id: If33d72919109244a7c3bd96674a4e386c8d1a19e
Signed-off-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Reviewed-on: http://review.coreboot.org/3307
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Denis Carikli <GNUtoo@no-log.org>
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
This commit is contained in:
Christian Gmeiner 2013-05-29 20:30:18 +00:00 committed by Alexandru Gagniuc
parent 038aa29dc2
commit 01c095ff4c
1 changed files with 4 additions and 4 deletions

View File

@ -582,7 +582,7 @@ void chipsetinit(void)
}
/* Flash BAR size Setup */
printk(BIOS_ERR, "%sDoing ChipsetFlashSetup()\n",
printk(BIOS_INFO, "%sDoing ChipsetFlashSetup()\n",
sb->enable_ide_nand_flash == 1 ? "" : "Not ");
if (sb->enable_ide_nand_flash == 1)
ChipsetFlashSetup();
@ -610,7 +610,7 @@ static void southbridge_init(struct device *dev)
* unsigned short gpiobase = MDD_GPIO;
*/
printk(BIOS_ERR, "cs5536: %s\n", __func__);
printk(BIOS_INFO, "cs5536: %s\n", __func__);
if (!sb) {
printk(BIOS_ERR, "CS5536 configuration not found.\n");
@ -628,7 +628,7 @@ static void southbridge_init(struct device *dev)
(sb->enable_gpio_int_route >> 16));
}
printk(BIOS_ERR, "cs5536: %s: enable_ide_nand_flash is %d\n", __func__,
printk(BIOS_DEBUG, "cs5536: %s: enable_ide_nand_flash is %d\n", __func__,
sb->enable_ide_nand_flash);
if (sb->enable_ide_nand_flash == 1) {
enable_ide_nand_flash_header();
@ -665,7 +665,7 @@ static void cs5536_read_resources(device_t dev)
static void southbridge_enable(struct device *dev)
{
printk(BIOS_ERR, "cs5536: %s: dev is %p\n", __func__, dev);
printk(BIOS_DEBUG, "cs5536: %s: dev is %p\n", __func__, dev);
}