Deleted Added
full compact
uhci_pci.c (196219) uhci_pci.c (198151)
1/*-
2 * Copyright (c) 1998 The NetBSD Foundation, Inc.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to The NetBSD Foundation
6 * by Lennart Augustsson (augustss@carlstedt.se) at
7 * Carlstedt Research & Technology.
8 *

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

31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1998 The NetBSD Foundation, Inc.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to The NetBSD Foundation
6 * by Lennart Augustsson (augustss@carlstedt.se) at
7 * Carlstedt Research & Technology.
8 *

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

31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#include <sys/cdefs.h>
39__FBSDID("$FreeBSD: head/sys/dev/usb/controller/uhci_pci.c 196219 2009-08-14 20:03:53Z jhb $");
39__FBSDID("$FreeBSD: head/sys/dev/usb/controller/uhci_pci.c 198151 2009-10-15 20:07:08Z thompsa $");
40
41/* Universal Host Controller Interface
42 *
43 * UHCI spec: http://www.intel.com/
44 */
45
46/* The low level controller code for UHCI has been split into
47 * PCI probes and UHCI specific code. This was done to facilitate the

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

76#include <dev/usb/usb_process.h>
77#include <dev/usb/usb_util.h>
78#include <dev/usb/usb_debug.h>
79
80#include <dev/usb/usb_controller.h>
81#include <dev/usb/usb_bus.h>
82#include <dev/usb/usb_pci.h>
83#include <dev/usb/controller/uhci.h>
40
41/* Universal Host Controller Interface
42 *
43 * UHCI spec: http://www.intel.com/
44 */
45
46/* The low level controller code for UHCI has been split into
47 * PCI probes and UHCI specific code. This was done to facilitate the

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

76#include <dev/usb/usb_process.h>
77#include <dev/usb/usb_util.h>
78#include <dev/usb/usb_debug.h>
79
80#include <dev/usb/usb_controller.h>
81#include <dev/usb/usb_bus.h>
82#include <dev/usb/usb_pci.h>
83#include <dev/usb/controller/uhci.h>
84#include <dev/usb/controller/uhcireg.h>
84
85#define PCI_UHCI_VENDORID_INTEL 0x8086
86#define PCI_UHCI_VENDORID_VIA 0x1106
87
88/* PIIX4E has no separate stepping */
89
90#define PCI_UHCI_BASE_REG 0x20
91

--- 378 unchanged lines hidden ---
85
86#define PCI_UHCI_VENDORID_INTEL 0x8086
87#define PCI_UHCI_VENDORID_VIA 0x1106
88
89/* PIIX4E has no separate stepping */
90
91#define PCI_UHCI_BASE_REG 0x20
92

--- 378 unchanged lines hidden ---