From 02d66fd1bf3e5548dc5edaed074d2946fe5a37df Mon Sep 17 00:00:00 2001 From: Peter Stuge Date: Wed, 10 Nov 2010 02:12:05 +0000 Subject: Make amdk8 printk_raminit() accept just a single string parameter The function is called with no format specifiers in the first parameter throughout the code, so it needs to work also with just one parameter. Signed-off-by: Peter Stuge Acked-by: Peter Stuge git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6056 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/northbridge/amd/amdk8/raminit_f.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/northbridge/amd/amdk8/raminit_f.c b/src/northbridge/amd/amdk8/raminit_f.c index 218acd0890..0a1db664e1 100644 --- a/src/northbridge/amd/amdk8/raminit_f.c +++ b/src/northbridge/amd/amdk8/raminit_f.c @@ -33,9 +33,9 @@ #endif #if CONFIG_DEBUG_RAM_SETUP -#define printk_raminit(fmt, arg...) printk(BIOS_DEBUG, fmt, arg) +#define printk_raminit(args...) printk(BIOS_DEBUG, args) #else -#define printk_raminit(fmt, arg...) +#define printk_raminit(args...) #endif -- cgit v1.2.3