David Hendricks ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2162
-gerrit commit f0fcddabb1f4036a193a99c3e772a0fb15467227 Author: David Hendricks <[email protected]> Date: Wed Jan 16 14:58:48 2013 -0800 remove argument in snow's romstage main() We don't pass any arguments into romstage on ARM. Change-Id: I018f28a57fc486c9240345cf0f4043b79027d864 Signed-off-by: David Hendricks <[email protected]> --- src/mainboard/google/snow/romstage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mainboard/google/snow/romstage.c b/src/mainboard/google/snow/romstage.c index 29e4555..9092b7c 100644 --- a/src/mainboard/google/snow/romstage.c +++ b/src/mainboard/google/snow/romstage.c @@ -26,7 +26,7 @@ static void mmu_setup(void) dram_bank_mmu_setup(CONFIG_SYS_SDRAM_BASE, CONFIG_DRAM_SIZE_MB * 1024); } -void main(unsigned long bist) +void main(void) { mmu_setup(); } -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

