A (hypothetical southbridge) component might provide functionality that is not
authorStefan Reinauer <stepan@coresystems.de>
Sat, 24 Oct 2009 13:13:37 +0000 (13:13 +0000)
committerStefan Reinauer <stepan@openbios.org>
Sat, 24 Oct 2009 13:13:37 +0000 (13:13 +0000)
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

src/pc80/mc146818rtc.c

index c39992bc2df89451c77ffcdc4a4f9633253b1b75..e851bdceb85589c32c1d88a99851d897f81217fb 100644 (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);
        }