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
This commit is contained in:
parent
5015f79857
commit
02d66fd1bf
|
@ -33,9 +33,9 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if CONFIG_DEBUG_RAM_SETUP
|
#if CONFIG_DEBUG_RAM_SETUP
|
||||||
#define printk_raminit(fmt, arg...) printk(BIOS_DEBUG, fmt, arg)
|
#define printk_raminit(args...) printk(BIOS_DEBUG, args)
|
||||||
#else
|
#else
|
||||||
#define printk_raminit(fmt, arg...)
|
#define printk_raminit(args...)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue