diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-10-24 13:13:37 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-10-24 13:13:37 +0000 |
commit | ea67d4757b776ed7ff147e1b4cbdaf300bc4bb6c (patch) | |
tree | 022e699fca023bebe6c3bd7679279ca8e76120a4 /src/pc80/mc146818rtc.c | |
parent | 52fc6b12cb458a93ba1eeac4082f4e7f574cdafc (diff) |
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
Diffstat (limited to 'src/pc80/mc146818rtc.c')
-rw-r--r-- | src/pc80/mc146818rtc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pc80/mc146818rtc.c b/src/pc80/mc146818rtc.c index c39992bc2d..e851bdceb8 100644 --- a/src/pc80/mc146818rtc.c +++ b/src/pc80/mc146818rtc.c @@ -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); } |