Deleted Added
full compact
uhci.h (190754) uhci.h (191402)
1/* $FreeBSD: head/sys/dev/usb/controller/uhci.h 190754 2009-04-06 00:22:49Z thompsa $ */
1/* $FreeBSD: head/sys/dev/usb/controller/uhci.h 191402 2009-04-22 17:08:16Z thompsa $ */
2/*-
3 * Copyright (c) 1998 The NetBSD Foundation, Inc.
4 * All rights reserved.
5 *
6 * This code is derived from software contributed to The NetBSD Foundation
7 * by Lennart Augustsson (lennart@augustsson.net) at
8 * Carlstedt Research & Technology.
9 *

--- 228 unchanged lines hidden (view full) ---

238 struct usb2_config_descriptor confd;
239 struct usb2_interface_descriptor ifcd;
240 struct usb2_endpoint_descriptor endpd;
241} __packed;
242
243union uhci_hub_desc {
244 struct usb2_status stat;
245 struct usb2_port_status ps;
2/*-
3 * Copyright (c) 1998 The NetBSD Foundation, Inc.
4 * All rights reserved.
5 *
6 * This code is derived from software contributed to The NetBSD Foundation
7 * by Lennart Augustsson (lennart@augustsson.net) at
8 * Carlstedt Research & Technology.
9 *

--- 228 unchanged lines hidden (view full) ---

238 struct usb2_config_descriptor confd;
239 struct usb2_interface_descriptor ifcd;
240 struct usb2_endpoint_descriptor endpd;
241} __packed;
242
243union uhci_hub_desc {
244 struct usb2_status stat;
245 struct usb2_port_status ps;
246 struct usb2_device_descriptor devd;
247 uint8_t temp[128];
248};
249
250struct uhci_hw_softc {
251 struct usb2_page_cache pframes_pc;
252 struct usb2_page_cache isoc_start_pc[UHCI_VFRAMELIST_COUNT];
253 struct usb2_page_cache intr_start_pc[UHCI_IFRAMELIST_COUNT];
254 struct usb2_page_cache ls_ctl_start_pc;

--- 67 unchanged lines hidden ---
246 uint8_t temp[128];
247};
248
249struct uhci_hw_softc {
250 struct usb2_page_cache pframes_pc;
251 struct usb2_page_cache isoc_start_pc[UHCI_VFRAMELIST_COUNT];
252 struct usb2_page_cache intr_start_pc[UHCI_IFRAMELIST_COUNT];
253 struct usb2_page_cache ls_ctl_start_pc;

--- 67 unchanged lines hidden ---