@@ -63,7 +63,7 @@ struct ecard_request {
63
63
struct completion * complete ;
64
64
};
65
65
66
- struct expcard_blacklist {
66
+ struct expcard_quirklist {
67
67
unsigned short manufacturer ;
68
68
unsigned short product ;
69
69
const char * type ;
@@ -79,7 +79,7 @@ static void atomwide_3p_quirk(ecard_t *ec);
79
79
/* List of descriptions of cards which don't have an extended
80
80
* identification, or chunk directories containing a description.
81
81
*/
82
- static struct expcard_blacklist __initdata blacklist [] = {
82
+ static struct expcard_quirklist quirklist [] __initdata = {
83
83
{ MANU_ACORN , PROD_ACORN_ETHER1 , "Acorn Ether1" },
84
84
{ MANU_ATOMWIDE , PROD_ATOMWIDE_3PSERIAL , NULL , atomwide_3p_quirk },
85
85
};
@@ -935,13 +935,13 @@ static int __init ecard_probe(int slot, unsigned irq, card_type_t type)
935
935
ec -> fiqmask = 4 ;
936
936
}
937
937
938
- for (i = 0 ; i < ARRAY_SIZE (blacklist ); i ++ )
939
- if (blacklist [i ].manufacturer == ec -> cid .manufacturer &&
940
- blacklist [i ].product == ec -> cid .product ) {
941
- if (blacklist [i ].type )
942
- ec -> card_desc = blacklist [i ].type ;
943
- if (blacklist [i ].init )
944
- blacklist [i ].init (ec );
938
+ for (i = 0 ; i < ARRAY_SIZE (quirklist ); i ++ )
939
+ if (quirklist [i ].manufacturer == ec -> cid .manufacturer &&
940
+ quirklist [i ].product == ec -> cid .product ) {
941
+ if (quirklist [i ].type )
942
+ ec -> card_desc = quirklist [i ].type ;
943
+ if (quirklist [i ].init )
944
+ quirklist [i ].init (ec );
945
945
break ;
946
946
}
947
947
0 commit comments