xref: /reactos/drivers/storage/class/classpnp/data.c (revision 36873c49)
1 /*++
2 
3 Copyright (C) Microsoft Corporation, 1991 - 1999
4 
5 Module Name:
6 
7     disk.c
8 
9 Abstract:
10 
11     SCSI disk class driver
12 
13 Environment:
14 
15     kernel mode only
16 
17 Notes:
18 
19 Revision History:
20 
21 --*/
22 
23 #include "classp.h"
24 
25 #ifdef ALLOC_DATA_PRAGMA
26 #pragma data_seg("PAGE")
27 #endif
28 
29 /*
30 #define FDO_HACK_CANNOT_LOCK_MEDIA (0x00000001)
31 #define FDO_HACK_GESN_IS_BAD       (0x00000002)
32 */
33 
34 CLASSPNP_SCAN_FOR_SPECIAL_INFO ClassBadItems[] = {
35     { ""        , "MITSUMI CD-ROM FX240"           , NULL,   0x02 },
36     { ""        , "MITSUMI CD-ROM FX320"           , NULL,   0x02 },
37     { ""        , "MITSUMI CD-ROM FX322"           , NULL,   0x02 },
38     { ""        , "COMPAQ CRD-8481B"               , NULL,   0x04 },
39     { NULL      , NULL                             , NULL,   0x0  }
40 };
41 
42 
43 GUID ClassGuidQueryRegInfoEx = GUID_CLASSPNP_QUERY_REGINFOEX;
44 
45 #ifdef ALLOC_DATA_PRAGMA
46 #pragma data_seg()
47 #endif
48 
49