A (hypothetical southbridge) component might provide functionality that is not

available on all boards. Thus, only print a debug level warning instead of an
error.

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4838 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2009-10-24 13:13:37 +00:00 committed by Stefan Reinauer
parent 52fc6b12cb
commit ea67d4757b
1 changed files with 1 additions and 1 deletions

View File

@ -253,7 +253,7 @@ int get_option(void *dest, const char *name)
}
}
if(!found) {
printk_err("ERROR: No cmos option '%s'\n", name);
printk_debug("WARNING: No cmos option '%s'\n", name);
return(-2);
}