Deleted Added
full compact
ohci_pci.c (196219) ohci_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/ohci_pci.c 196219 2009-08-14 20:03:53Z jhb $");
39__FBSDID("$FreeBSD: head/sys/dev/usb/controller/ohci_pci.c 198151 2009-10-15 20:07:08Z thompsa $");
40
41/*
42 * USB Open Host Controller driver.
43 *
44 * OHCI spec: http://www.intel.com/design/usb/ohci11d.pdf
45 */
46
47/* The low level controller code for OHCI has been split into

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

76#include <dev/usb/usb_busdma.h>
77#include <dev/usb/usb_process.h>
78#include <dev/usb/usb_util.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/ohci.h>
40
41/*
42 * USB Open Host Controller driver.
43 *
44 * OHCI spec: http://www.intel.com/design/usb/ohci11d.pdf
45 */
46
47/* The low level controller code for OHCI has been split into

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

76#include <dev/usb/usb_busdma.h>
77#include <dev/usb/usb_process.h>
78#include <dev/usb/usb_util.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/ohci.h>
84#include <dev/usb/controller/ohcireg.h>
84
85#define PCI_OHCI_VENDORID_ACERLABS 0x10b9
86#define PCI_OHCI_VENDORID_AMD 0x1022
87#define PCI_OHCI_VENDORID_APPLE 0x106b
88#define PCI_OHCI_VENDORID_ATI 0x1002
89#define PCI_OHCI_VENDORID_CMDTECH 0x1095
90#define PCI_OHCI_VENDORID_NEC 0x1033
91#define PCI_OHCI_VENDORID_NVIDIA 0x12D2

--- 315 unchanged lines hidden ---
85
86#define PCI_OHCI_VENDORID_ACERLABS 0x10b9
87#define PCI_OHCI_VENDORID_AMD 0x1022
88#define PCI_OHCI_VENDORID_APPLE 0x106b
89#define PCI_OHCI_VENDORID_ATI 0x1002
90#define PCI_OHCI_VENDORID_CMDTECH 0x1095
91#define PCI_OHCI_VENDORID_NEC 0x1033
92#define PCI_OHCI_VENDORID_NVIDIA 0x12D2

--- 315 unchanged lines hidden ---