mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 13:11:31 +00:00
common/usb_kbd.c: fix bug introduced in commit 00b7d6e
During the rebase of commit 00b7d6e
"USB: Squash checkpatch warnings
in usb_kbd.c" I missed a brace, resulting in a number of build errors.
Fix these.
Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
parent
3da597dbde
commit
c4eba6ec5c
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ static int usb_kbd_testc(void)
|
|||
static int usb_kbd_getc(void)
|
||||
{
|
||||
char c;
|
||||
while (usb_in_pointer == usb_out_pointer)
|
||||
while (usb_in_pointer == usb_out_pointer) {
|
||||
#ifdef CONFIG_SYS_USB_EVENT_POLL
|
||||
usb_event_poll();
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue