Patrick Georgi (patrick@georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2059
-gerrit
commit 8469b9a6c51686ed25562f673b6761e78fc58d55 Author: Patrick Georgi patrick@georgi-clan.de Date: Wed Dec 19 19:08:45 2012 +0100
libpayload: fix USB
A "far" modifier sneaked into the USB driver, but gcc doesn't understand it.
Change-Id: I5c67bd55eabce467e1aa107c95c1db2518af7b0e Signed-off-by: Patrick Georgi patrick@georgi-clan.de --- payloads/libpayload/drivers/usb/ohci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/payloads/libpayload/drivers/usb/ohci.c b/payloads/libpayload/drivers/usb/ohci.c index 3985f1b..22462a0 100644 --- a/payloads/libpayload/drivers/usb/ohci.c +++ b/payloads/libpayload/drivers/usb/ohci.c @@ -80,7 +80,7 @@ dump_td (td_t *cur) }
static void -dump_ed (ed_t far *cur) +dump_ed (ed_t *cur) { td_t *tmp_td = NULL; usb_debug("+===================================================+\n");