diff options
Diffstat (limited to 'drivers/net/wireless/atmel_cs.c')
-rw-r--r-- | drivers/net/wireless/atmel_cs.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/net/wireless/atmel_cs.c b/drivers/net/wireless/atmel_cs.c index 25fb919b3791..26bf1127524d 100644 --- a/drivers/net/wireless/atmel_cs.c +++ b/drivers/net/wireless/atmel_cs.c | |||
@@ -216,13 +216,12 @@ do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0) | |||
216 | /* Call-back function to interrogate PCMCIA-specific information | 216 | /* Call-back function to interrogate PCMCIA-specific information |
217 | about the current existance of the card */ | 217 | about the current existance of the card */ |
218 | static int card_present(void *arg) | 218 | static int card_present(void *arg) |
219 | { | 219 | { |
220 | struct pcmcia_device *link = (struct pcmcia_device *)arg; | 220 | struct pcmcia_device *link = (struct pcmcia_device *)arg; |
221 | if (link->suspended) | 221 | |
222 | return 0; | 222 | if (pcmcia_dev_present(link)) |
223 | else if (pcmcia_dev_present(link)) | ||
224 | return 1; | 223 | return 1; |
225 | 224 | ||
226 | return 0; | 225 | return 0; |
227 | } | 226 | } |
228 | 227 | ||