diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-10-16 01:08:07 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-10-16 01:08:07 +0000 |
commit | 9d37532bc1075360c3f1eca8f000afd7c178de5a (patch) | |
tree | 66e400850de1fbaaa26c68dbfb090b13a3b5dc47 /util/vgabios/helper_mem.c | |
parent | 61c7fbfd5e1305ab7e05b3f1e7eea50085515640 (diff) | |
download | coreboot-9d37532bc1075360c3f1eca8f000afd7c178de5a.tar.xz |
this is probably in vain because this tool should use the same x86emu as
coreboot in order to produce comparable results. But, this patch drops the
CONFIG_ from CONFIG_DEBUG because that was added by accident when we
automatically renamed coreboot variables to be consistent. "vgabios" is an
independent userspace utility, and it does not use newconfig nor Kconfig, so
it should not be converted. (trivial)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4782 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/vgabios/helper_mem.c')
-rw-r--r-- | util/vgabios/helper_mem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/vgabios/helper_mem.c b/util/vgabios/helper_mem.c index 3e201c00a8..50a303b45e 100644 --- a/util/vgabios/helper_mem.c +++ b/util/vgabios/helper_mem.c @@ -24,7 +24,7 @@ static const OptionInfoRec INT10Options[] = { }; #endif -#ifdef CONFIG_DEBUG +#ifdef DEBUG void dprint(unsigned long start, unsigned long size) { int i, j; @@ -44,7 +44,7 @@ void dprint(unsigned long start, unsigned long size) } printf("\n"); } -#endif /* CONFIG_DEBUG */ +#endif /* DEBUG */ #if 0 #ifndef _PC |