Martin Roth ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2501
-gerrit commit 1576f7a049fb1aca2e0e467a5e758e5c6d620bdc Author: Martin Roth <[email protected]> Date: Sun Feb 24 14:12:32 2013 -0700 AMD Southstation: Fix final warning Changes: - Add #include of delay.h in mainboard.c to pick up declaration of mdelay function. Notes: - This fixes this warning: mainboard.c:69, GNU Compiler 4 (gcc), Priority: Normal implicit declaration of function 'mdelay' [-Wimplicit-function-declaration] Change-Id: I72f333cd87215a7fc1e62d1d7ee4b2395444b03e Signed-off-by: Martin Roth <[email protected]> --- src/mainboard/amd/south_station/mainboard.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mainboard/amd/south_station/mainboard.c b/src/mainboard/amd/south_station/mainboard.c index 5f31e03..97cb043 100644 --- a/src/mainboard/amd/south_station/mainboard.c +++ b/src/mainboard/amd/south_station/mainboard.c @@ -24,6 +24,7 @@ #include <cpu/x86/msr.h> #include <cpu/amd/mtrr.h> #include <device/pci_def.h> +#include <delay.h> #include "SBPLATFORM.h" /* Platfrom Specific Definitions */ -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

