diff options
Diffstat (limited to 'drivers/pcmcia')
-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; |