Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/pcmcia Add a 'value engineered' generic pcmcia CD-RO...



details:   https://anonhg.NetBSD.org/src/rev/5a1a1310304b
branches:  trunk
changeset: 500780:5a1a1310304b
user:      abs <abs%NetBSD.org@localhost>
date:      Mon Dec 18 17:21:11 2000 +0000

description:
Add a 'value engineered' generic pcmcia CD-ROM drive, badged 'AMACOM'.
No vendor ID, no product ID, and the wpp_cis_info is 'PCMCIA', 'CD-ROM'.
I'd be encouraged at some progress towards 'generic devices', except
someone else is bound to produce something that identifies the same, but
requires a quirk. Can I go back to my sparc now?
Make two other comments consistent while here.

diffstat:

 sys/dev/pcmcia/wdc_pcmcia.c |  12 +++++++++---
 1 files changed, 9 insertions(+), 3 deletions(-)

diffs (36 lines):

diff -r 18572d772cc9 -r 5a1a1310304b sys/dev/pcmcia/wdc_pcmcia.c
--- a/sys/dev/pcmcia/wdc_pcmcia.c       Mon Dec 18 17:00:44 2000 +0000
+++ b/sys/dev/pcmcia/wdc_pcmcia.c       Mon Dec 18 17:21:11 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: wdc_pcmcia.c,v 1.35 2000/10/25 09:32:11 haya Exp $ */
+/*     $NetBSD: wdc_pcmcia.c,v 1.36 2000/12/18 17:21:11 abs Exp $ */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -114,18 +114,24 @@
          PCMCIA_CIS_EXP_EXPMULTIMEDIA,
          PCMCIA_STR_EXP_EXPMULTIMEDIA },
 
-       /* Mobile Dock 2, which doesn't have vendor ID nor product ID */
+       /* Mobile Dock 2, neither vendor ID nor product ID */
        { -1, -1, 0,
          { "SHUTTLE TECHNOLOGY LTD.", "PCCARD-IDE/ATAPI Adapter", NULL, NULL},
          "SHUTTLE TECHNOLOGY IDE/ATAPI Adapter"
        },
 
-       /* Toshiba Portege 3110 CD, with neither vendor ID nor product ID */
+       /* Toshiba Portege 3110 CD, neither vendor ID nor product ID */
        { -1, -1, 0,
          { "FREECOM", "PCCARD-IDE", NULL, NULL},
          "FREECOM PCCARD-IDE"
        },
 
+       /* Random CD-ROM, (badged AMACOM), neither vendor ID nor product ID */ 
+       { -1, -1, 0,
+         { "PCMCIA", "CD-ROM", NULL, NULL},
+         "PCMCIA CD-ROM"
+       },
+
        { 0, 0, 0, { NULL, NULL, NULL, NULL}, NULL }
 };
 



Home | Main Index | Thread Index | Old Index