[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;
}

View File

@@ -210,7 +210,7 @@ static int prism2_config(struct pcmcia_device *link);
static int prism2_pccard_card_present(local_info_t *local)
{
struct hostap_cs_priv *hw_priv = local->hw_priv;
if (hw_priv != NULL && hw_priv->link != NULL && DEV_OK(hw_priv->link))
if (hw_priv != NULL && hw_priv->link != NULL && pcmcia_dev_present(hw_priv->link))
return 1;
return 0;
}

View File

@@ -1107,7 +1107,7 @@ static irqreturn_t netwave_interrupt(int irq, void* dev_id, struct pt_regs *regs
status = inb(iobase + NETWAVE_REG_ASR);
if (!DEV_OK(link)) {
if (!pcmcia_dev_present(link)) {
DEBUG(1, "netwave_interrupt: Interrupt with status 0x%x "
"from removed or suspended card!\n", status);
break;
@@ -1346,7 +1346,7 @@ static int netwave_open(struct net_device *dev) {
DEBUG(1, "netwave_open: starting.\n");
if (!DEV_OK(link))
if (!pcmcia_dev_present(link))
return -ENODEV;
link->open++;

View File

@@ -1961,7 +1961,7 @@ static irqreturn_t ray_interrupt(int irq, void *dev_id, struct pt_regs * regs)
local = (ray_dev_t *)dev->priv;
link = (struct pcmcia_device *)local->finder;
if (!(pcmcia_dev_present(link)) || link->suspended ) {
if (!pcmcia_dev_present(link)) {
DEBUG(2,"ray_cs interrupt from device not present or suspended.\n");
return IRQ_NONE;
}

View File

@@ -1387,7 +1387,7 @@ static int wl3501_open(struct net_device *dev)
link = this->p_dev;
spin_lock_irqsave(&this->lock, flags);
if (!DEV_OK(link))
if (!pcmcia_dev_present(link))
goto out;
netif_device_attach(dev);
link->open++;