aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Stuge <peter@stuge.se>2010-11-10 02:12:05 +0000
committerPeter Stuge <peter@stuge.se>2010-11-10 02:12:05 +0000
commit02d66fd1bf3e5548dc5edaed074d2946fe5a37df (patch)
treededf060ca49a6f60ebf55ea863cccd9abfec912a /src
parent5015f79857738c47d98b01446eb0e248ba835f5a (diff)
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 <peter@stuge.se> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6056 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r--src/northbridge/amd/amdk8/raminit_f.c4
1 files changed, 2 insertions, 2 deletions
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