Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/marvell Fix size of EHCI register space.



details:   https://anonhg.NetBSD.org/src/rev/fda3bc5364f0
branches:  trunk
changeset: 789800:fda3bc5364f0
user:      kiyohara <kiyohara%NetBSD.org@localhost>
date:      Sun Sep 08 04:10:23 2013 +0000

description:
Fix size of EHCI register space.

diffstat:

 sys/dev/marvell/ehci_mv.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 6ada9338d581 -r fda3bc5364f0 sys/dev/marvell/ehci_mv.c
--- a/sys/dev/marvell/ehci_mv.c Sun Sep 08 04:07:45 2013 +0000
+++ b/sys/dev/marvell/ehci_mv.c Sun Sep 08 04:10:23 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ehci_mv.c,v 1.3 2013/05/01 12:30:02 rkujawa Exp $      */
+/*     $NetBSD: ehci_mv.c,v 1.4 2013/09/08 04:10:23 kiyohara Exp $     */
 /*
  * Copyright (c) 2008 KIYOHARA Takashi
  * All rights reserved.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ehci_mv.c,v 1.3 2013/05/01 12:30:02 rkujawa Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci_mv.c,v 1.4 2013/09/08 04:10:23 kiyohara Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
@@ -55,7 +55,7 @@
 #endif
 
 
-#define MARVELL_USB_SIZE               0x2000
+#define MARVELL_USB_SIZE               0x1000
 
 #define MARVELL_USB_NWINDOW            4
 
@@ -70,7 +70,7 @@
 
 /* ehci generic registers */
 #define MARVELL_USB_EHCI_BASE          0x100
-#define MARVELL_USB_EHCI_SIZE          0x1000
+#define MARVELL_USB_EHCI_SIZE          0x100
 
 /* ehci vendor extension registers */
 #define MARVELL_USB_EHCI_PS_PSPD       0x0c000000      /* Port speed */



Home | Main Index | Thread Index | Old Index