Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/nick-nhusb]: src/sys/arch/arm/samsung Adapt to the branch.
details: https://anonhg.NetBSD.org/src/rev/aab5fdd8ec5c
branches: nick-nhusb
changeset: 334440:aab5fdd8ec5c
user: skrll <skrll%NetBSD.org@localhost>
date: Sat Mar 19 14:16:46 2016 +0000
description:
Adapt to the branch.
diffstat:
sys/arch/arm/samsung/exynos_ehci.c | 10 +++++-----
sys/arch/arm/samsung/exynos_ohci.c | 8 ++++----
2 files changed, 9 insertions(+), 9 deletions(-)
diffs (60 lines):
diff -r dc3bf93c0fd4 -r aab5fdd8ec5c sys/arch/arm/samsung/exynos_ehci.c
--- a/sys/arch/arm/samsung/exynos_ehci.c Sat Mar 19 11:29:53 2016 +0000
+++ b/sys/arch/arm/samsung/exynos_ehci.c Sat Mar 19 14:16:46 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: exynos_ehci.c,v 1.1.2.2 2016/03/19 11:29:57 skrll Exp $ */
+/* $NetBSD: exynos_ehci.c,v 1.1.2.3 2016/03/19 14:16:46 skrll Exp $ */
/*-
* Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -35,7 +35,7 @@
#include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: exynos_ehci.c,v 1.1.2.2 2016/03/19 11:29:57 skrll Exp $");
+__KERNEL_RCSID(1, "$NetBSD: exynos_ehci.c,v 1.1.2.3 2016/03/19 14:16:46 skrll Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -95,9 +95,9 @@
sc->sc_dev = self;
sc->iot = faa->faa_bst;
sc->sc_size = size;
- sc->sc_bus.dmatag = faa->faa_dmat;
- sc->sc_bus.hci_private = sc;
- sc->sc_bus.usbrev = USBREV_2_0;
+ sc->sc_bus.ub_dmatag = faa->faa_dmat;
+ sc->sc_bus.ub_hcpriv = sc;
+ sc->sc_bus.ub_revision = USBREV_2_0;
sc->sc_ncomp = 0;
strlcpy(sc->sc_vendor, "exynos", sizeof(sc->sc_vendor));
diff -r dc3bf93c0fd4 -r aab5fdd8ec5c sys/arch/arm/samsung/exynos_ohci.c
--- a/sys/arch/arm/samsung/exynos_ohci.c Sat Mar 19 11:29:53 2016 +0000
+++ b/sys/arch/arm/samsung/exynos_ohci.c Sat Mar 19 14:16:46 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: exynos_ohci.c,v 1.1.2.2 2016/03/19 11:29:57 skrll Exp $ */
+/* $NetBSD: exynos_ohci.c,v 1.1.2.3 2016/03/19 14:16:46 skrll Exp $ */
/*-
* Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -35,7 +35,7 @@
#include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: exynos_ohci.c,v 1.1.2.2 2016/03/19 11:29:57 skrll Exp $");
+__KERNEL_RCSID(1, "$NetBSD: exynos_ohci.c,v 1.1.2.3 2016/03/19 14:16:46 skrll Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -95,8 +95,8 @@
sc->sc_dev = self;
sc->iot = faa->faa_bst;
sc->sc_size = size;
- sc->sc_bus.dmatag = faa->faa_dmat;
- sc->sc_bus.hci_private = sc;
+ sc->sc_bus.ub_dmatag = faa->faa_dmat;
+ sc->sc_bus.ub_hcpriv = sc;
error = bus_space_map(sc->iot, addr, size, 0, &sc->ioh);
if (error) {
Home |
Main Index |
Thread Index |
Old Index