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:
Patrick Georgi 2012-12-19 19:08:45 +01:00 committed by Anton Kochkov
parent ebb89e3a8c
commit 5fa7ea419b
1 changed files with 1 additions and 1 deletions

View File

@ -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");