Author: stuge Date: Wed Nov 10 03:12:05 2010 New Revision: 6056 URL: https://tracker.coreboot.org/trac/coreboot/changeset/6056
Log: 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 <[email protected]> Acked-by: Peter Stuge <[email protected]> Modified: trunk/src/northbridge/amd/amdk8/raminit_f.c Modified: trunk/src/northbridge/amd/amdk8/raminit_f.c ============================================================================== --- trunk/src/northbridge/amd/amdk8/raminit_f.c Wed Nov 10 03:00:32 2010 (r6055) +++ trunk/src/northbridge/amd/amdk8/raminit_f.c Wed Nov 10 03:12:05 2010 (r6056) @@ -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 -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

