diff options
Diffstat (limited to 'src/drivers/usb')
-rw-r--r-- | src/drivers/usb/ehci_debug.c | 8 | ||||
-rw-r--r-- | src/drivers/usb/gadget.c | 2 | ||||
-rw-r--r-- | src/drivers/usb/usb_ch9.h | 20 |
3 files changed, 15 insertions, 15 deletions
diff --git a/src/drivers/usb/ehci_debug.c b/src/drivers/usb/ehci_debug.c index 6fcf683fe6..9491a8ffbe 100644 --- a/src/drivers/usb/ehci_debug.c +++ b/src/drivers/usb/ehci_debug.c @@ -455,10 +455,10 @@ try_next_port: dprintk(BIOS_INFO, "debug_port: %d\n", debug_port); dprintk(BIOS_INFO, "n_ports: %d\n", n_ports); - for (i = 1; i <= n_ports; i++) { - portsc = read32(&ehci_regs->port_status[i-1]); - dprintk(BIOS_INFO, "PORTSC #%d: %08x\n", i, portsc); - } + for (i = 1; i <= n_ports; i++) { + portsc = read32(&ehci_regs->port_status[i-1]); + dprintk(BIOS_INFO, "PORTSC #%d: %08x\n", i, portsc); + } if (port_map_tried && (new_debug_port != debug_port)) { if (--playtimes) { diff --git a/src/drivers/usb/gadget.c b/src/drivers/usb/gadget.c index 7a1f073a5c..ee18bd6b48 100644 --- a/src/drivers/usb/gadget.c +++ b/src/drivers/usb/gadget.c @@ -37,7 +37,7 @@ static int hub_port_status(const char * buf, int feature) /* After USB port reset, treat device number 0 as an USB hub. Assign it with * a device number hub_addr. Then apply enable and reset on downstream port. */ - static int dbgp_hub_enable(struct ehci_dbg_port *ehci_debug, unsigned char hub_addr, +static int dbgp_hub_enable(struct ehci_dbg_port *ehci_debug, unsigned char hub_addr, unsigned char port) { char status[8]; diff --git a/src/drivers/usb/usb_ch9.h b/src/drivers/usb/usb_ch9.h index 271b7d1cac..d7f39dde24 100644 --- a/src/drivers/usb/usb_ch9.h +++ b/src/drivers/usb/usb_ch9.h @@ -108,20 +108,20 @@ #define USB_PID_DATA_TOGGLE 0x88 struct usb_ctrlrequest { - u8 bRequestType; - u8 bRequest; - u16 wValue; - u16 wIndex; - u16 wLength; + u8 bRequestType; + u8 bRequest; + u16 wValue; + u16 wIndex; + u16 wLength; } __packed; struct usb_debug_descriptor { - u8 bLength; - u8 bDescriptorType; + u8 bLength; + u8 bDescriptorType; - /* bulk endpoints with 8 byte maxpacket */ - u8 bDebugInEndpoint; - u8 bDebugOutEndpoint; + /* bulk endpoints with 8 byte maxpacket */ + u8 bDebugInEndpoint; + u8 bDebugOutEndpoint; }; #endif |