[PATCH] pcmcia: convert DEV_OK to pcmcia_dev_present

Instead of the DEV_OK macro, drivers should use pcmcia_dev_present().

Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
This commit is contained in:
Dominik Brodowski
2006-03-05 11:04:33 +01:00
parent e2d4096365
commit 9940ec3617
21 changed files with 59 additions and 36 deletions

View File

@ -216,13 +216,12 @@ do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
/* Call-back function to interrogate PCMCIA-specific information
about the current existance of the card */
static int card_present(void *arg)
{
{
struct pcmcia_device *link = (struct pcmcia_device *)arg;
if (link->suspended)
return 0;
else if (pcmcia_dev_present(link))
if (pcmcia_dev_present(link))
return 1;
return 0;
}