Deleted Added
full compact
ehci_pci.c (275439) ehci_pci.c (276968)
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 *

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

24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#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 *

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

24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#include <sys/cdefs.h>
32__FBSDID("$FreeBSD: stable/10/sys/dev/usb/controller/ehci_pci.c 275439 2014-12-03 06:53:49Z mav $");
32__FBSDID("$FreeBSD: stable/10/sys/dev/usb/controller/ehci_pci.c 276968 2015-01-11 12:08:17Z hselasky $");
33
34/*
35 * USB Enhanced Host Controller Driver, a.k.a. USB 2.0 controller.
36 *
37 * The EHCI 1.0 spec can be found at
38 * http://developer.intel.com/technology/usb/download/ehci-r10.pdf
39 * and the USB 2.0 spec at
40 * http://www.usb.org/developers/docs/usb_20.zip

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

115
116 case 0x43451002:
117 return "ATI SB200 USB 2.0 controller";
118 case 0x43731002:
119 return "ATI SB400 USB 2.0 controller";
120 case 0x43961002:
121 return ("AMD SB7x0/SB8x0/SB9x0 USB 2.0 controller");
122
33
34/*
35 * USB Enhanced Host Controller Driver, a.k.a. USB 2.0 controller.
36 *
37 * The EHCI 1.0 spec can be found at
38 * http://developer.intel.com/technology/usb/download/ehci-r10.pdf
39 * and the USB 2.0 spec at
40 * http://www.usb.org/developers/docs/usb_20.zip

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

115
116 case 0x43451002:
117 return "ATI SB200 USB 2.0 controller";
118 case 0x43731002:
119 return "ATI SB400 USB 2.0 controller";
120 case 0x43961002:
121 return ("AMD SB7x0/SB8x0/SB9x0 USB 2.0 controller");
122
123 case 0x0f348086:
124 return ("Intel BayTrail USB 2.0 controller");
125 case 0x1d268086:
126 return ("Intel Patsburg USB 2.0 controller");
127 case 0x1d2d8086:
128 return ("Intel Patsburg USB 2.0 controller");
123 case 0x1e268086:
124 return ("Intel Panther Point USB 2.0 controller");
125 case 0x1e2d8086:
126 return ("Intel Panther Point USB 2.0 controller");
127 case 0x1f2c8086:
128 return ("Intel Avoton USB 2.0 controller");
129 case 0x25ad8086:
130 return "Intel 6300ESB USB 2.0 controller";

--- 443 unchanged lines hidden ---
129 case 0x1e268086:
130 return ("Intel Panther Point USB 2.0 controller");
131 case 0x1e2d8086:
132 return ("Intel Panther Point USB 2.0 controller");
133 case 0x1f2c8086:
134 return ("Intel Avoton USB 2.0 controller");
135 case 0x25ad8086:
136 return "Intel 6300ESB USB 2.0 controller";

--- 443 unchanged lines hidden ---