diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2005-06-27 19:28:07 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-27 21:03:06 -0400 |
commit | ea7b38825bba66a81745a706da70a1c81adc95bd (patch) | |
tree | e4a55eb31a250cfc5465d17cc89450e0b5445862 /drivers/pcmcia/ds.c | |
parent | 23a83bfe6ab51c745d109d979c78a96fe3e93f5c (diff) |
[PATCH] pcmcia: match for fake CIS
Add another match flag for devices needing a CIS override. The driver will
only probe/attach if the CIS has been replaced before.
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/pcmcia/ds.c')
-rw-r--r-- | drivers/pcmcia/ds.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/pcmcia/ds.c b/drivers/pcmcia/ds.c index 3ac7a443f668..c0611d56eab2 100644 --- a/drivers/pcmcia/ds.c +++ b/drivers/pcmcia/ds.c | |||
@@ -733,6 +733,14 @@ static inline int pcmcia_devmatch(struct pcmcia_device *dev, | |||
733 | return 0; | 733 | return 0; |
734 | } | 734 | } |
735 | 735 | ||
736 | if (did->match_flags & PCMCIA_DEV_ID_MATCH_FAKE_CIS) { | ||
737 | if (!dev->socket->fake_cis) { | ||
738 | /* FIXME: evaluate using firmware helpers to | ||
739 | * automagically load it from userspace */ | ||
740 | return 0; | ||
741 | } | ||
742 | } | ||
743 | |||
736 | dev->dev.driver_data = (void *) did; | 744 | dev->dev.driver_data = (void *) did; |
737 | 745 | ||
738 | return 1; | 746 | return 1; |