Source-Changes-HG archive

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

[src/netbsd-3]: src/sys/dev/ata Pull up revision 1.303 (requested by bouyer i...



details:   https://anonhg.NetBSD.org/src/rev/742967d75c47
branches:  netbsd-3
changeset: 576426:742967d75c47
user:      tron <tron%NetBSD.org@localhost>
date:      Sat Jul 02 18:09:12 2005 +0000

description:
Pull up revision 1.303 (requested by bouyer in ticket #496):
Use pmatch() metacharacters to match both SATA and PATA versions of seagate
drives in the quirk table.

diffstat:

 sys/dev/ata/wd.c |  10 ++++------
 1 files changed, 4 insertions(+), 6 deletions(-)

diffs (32 lines):

diff -r b346ac2bd041 -r 742967d75c47 sys/dev/ata/wd.c
--- a/sys/dev/ata/wd.c  Sat Jul 02 18:05:32 2005 +0000
+++ b/sys/dev/ata/wd.c  Sat Jul 02 18:09:12 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: wd.c,v 1.298.2.3 2005/06/16 09:37:09 tron Exp $ */
+/*     $NetBSD: wd.c,v 1.298.2.4 2005/07/02 18:09:12 tron Exp $ */
 
 /*
  * Copyright (c) 1998, 2001 Manuel Bouyer.  All rights reserved.
@@ -66,7 +66,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: wd.c,v 1.298.2.3 2005/06/16 09:37:09 tron Exp $");
+__KERNEL_RCSID(0, "$NetBSD: wd.c,v 1.298.2.4 2005/07/02 18:09:12 tron Exp $");
 
 #ifndef ATADEBUG
 #define ATADEBUG
@@ -235,11 +235,9 @@
         * (aka LBA48_THRESHOLD) in LBA mode. The workaround is to force
         * LBA48
         */
-       { "ST3200822A",
+       { "ST3200822A*",
          WD_QUIRK_FORCE_LBA48 },
-       { "ST3200822AS",
-         WD_QUIRK_FORCE_LBA48 },
-       { "ST3250823AS",
+       { "ST3250823A*",
          WD_QUIRK_FORCE_LBA48 },
 
        { NULL,



Home | Main Index | Thread Index | Old Index