Source-Changes-HG archive

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

[src/netbsd-8]: src/sys/dev/pci Pull up following revision(s) (requested by m...



details:   https://anonhg.NetBSD.org/src/rev/a86d7ac03419
branches:  netbsd-8
changeset: 453061:a86d7ac03419
user:      martin <martin%NetBSD.org@localhost>
date:      Thu Aug 01 14:19:37 2019 +0000

description:
Pull up following revision(s) (requested by msaitoh in ticket #1314):

        sys/dev/pci/siside.c: revision 1.38

add missing break; after "100NEW" configuration.
don't also set "133OLD", since the 100NEW cards don't support 133.

diffstat:

 sys/dev/pci/siside.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r 95d649a5b087 -r a86d7ac03419 sys/dev/pci/siside.c
--- a/sys/dev/pci/siside.c      Thu Aug 01 14:14:30 2019 +0000
+++ b/sys/dev/pci/siside.c      Thu Aug 01 14:19:37 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: siside.c,v 1.36 2014/05/31 16:25:29 christos Exp $     */
+/*     $NetBSD: siside.c,v 1.36.20.1 2019/08/01 14:19:37 martin Exp $  */
 
 /*
  * Copyright (c) 1999, 2000, 2001 Manuel Bouyer.
@@ -25,7 +25,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: siside.c,v 1.36 2014/05/31 16:25:29 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: siside.c,v 1.36.20.1 2019/08/01 14:19:37 martin Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -451,6 +451,7 @@
                                sis_tim |=
                                    sis_udma100new_tim[drvp->UDMA_mode] <<
                                    SIS_TIM100_UDMA_TIME_OFF(drive);
+                               break;
                        case SIS_TYPE_133OLD:
                                sis_tim |=
                                    sis_udma133old_tim[drvp->UDMA_mode] <<



Home | Main Index | Thread Index | Old Index