From 42e28a8165573fae60ff62e67cb222f32bae0d4e Mon Sep 17 00:00:00 2001 From: pbrook Date: Sat, 11 Mar 2006 21:46:12 +0000 Subject: [PATCH] Add missing break statement. --- hw/usb-uhci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/usb-uhci.c b/hw/usb-uhci.c index e93db571..f902d461 100644 --- a/hw/usb-uhci.c +++ b/hw/usb-uhci.c @@ -153,6 +153,7 @@ static uint32_t uhci_ioport_readb(void *opaque, uint32_t addr) switch(addr) { case 0x0c: val = s->sof_timing; + break; default: val = 0xff; break; -- 2.39.5