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> Reviewed-on: http://review.coreboot.org/2059 Tested-by: build bot (Jenkins) Reviewed-by: Anton Kochkov <anton.kochkov@gmail.com>
This commit is contained in:
parent
ebb89e3a8c
commit
5fa7ea419b
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue