Deleted Added
full compact
ar71xx_ehci.c (285121) ar71xx_ehci.c (290910)
1/*-
2 * Copyright (c) 2008 Sam Leffler. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
25/*
26 * AR71XX attachment driver for the USB Enhanced Host Controller.
27 */
28
29#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2008 Sam Leffler. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
25/*
26 * AR71XX attachment driver for the USB Enhanced Host Controller.
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: head/sys/mips/atheros/ar71xx_ehci.c 285121 2015-07-04 03:05:57Z adrian $");
30__FBSDID("$FreeBSD: head/sys/mips/atheros/ar71xx_ehci.c 290910 2015-11-16 04:28:00Z adrian $");
31
32#include "opt_bus.h"
33
34#include <sys/param.h>
35#include <sys/systm.h>
36#include <sys/bus.h>
37#include <sys/rman.h>
38#include <sys/condvar.h>

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

168 case AR71XX_SOC_AR7242:
169 case AR71XX_SOC_AR9130:
170 case AR71XX_SOC_AR9132:
171 case AR71XX_SOC_AR9330:
172 case AR71XX_SOC_AR9331:
173 case AR71XX_SOC_AR9341:
174 case AR71XX_SOC_AR9342:
175 case AR71XX_SOC_AR9344:
31
32#include "opt_bus.h"
33
34#include <sys/param.h>
35#include <sys/systm.h>
36#include <sys/bus.h>
37#include <sys/rman.h>
38#include <sys/condvar.h>

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

168 case AR71XX_SOC_AR7242:
169 case AR71XX_SOC_AR9130:
170 case AR71XX_SOC_AR9132:
171 case AR71XX_SOC_AR9330:
172 case AR71XX_SOC_AR9331:
173 case AR71XX_SOC_AR9341:
174 case AR71XX_SOC_AR9342:
175 case AR71XX_SOC_AR9344:
176 case AR71XX_SOC_QCA9533:
177 case AR71XX_SOC_QCA9533_V2:
176 case AR71XX_SOC_QCA9556:
177 case AR71XX_SOC_QCA9558:
178 sc->sc_flags |= EHCI_SCFLG_TT | EHCI_SCFLG_NORESTERM;
179 break;
180 default:
181 /* fallthrough */
182 break;
183 }

--- 93 unchanged lines hidden ---
178 case AR71XX_SOC_QCA9556:
179 case AR71XX_SOC_QCA9558:
180 sc->sc_flags |= EHCI_SCFLG_TT | EHCI_SCFLG_NORESTERM;
181 break;
182 default:
183 /* fallthrough */
184 break;
185 }

--- 93 unchanged lines hidden ---