diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2006-01-15 03:32:39 -0500 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2006-03-31 10:15:50 -0500 |
commit | 5f2a71fcb7995633b335a1e380ac63a968e61320 (patch) | |
tree | d47f4227d314fc9f298b75c217fa78440004e6e7 /drivers/bluetooth/dtl1_cs.c | |
parent | 1de9cedfbdff1d8adb662cd3afc5bda66e393351 (diff) |
[PATCH] pcmcia: add pcmcia_disable_device
pcmcia_disable_device(struct pcmcia_device *p_dev) performs the necessary
cleanups upon device or driver removal: it calls the appropriate
pcmcia_release_* functions, and can replace (most) of the current drivers'
_release() functions.
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/bluetooth/dtl1_cs.c')
-rw-r--r-- | drivers/bluetooth/dtl1_cs.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/bluetooth/dtl1_cs.c b/drivers/bluetooth/dtl1_cs.c index 0449bc45ae5..efbc8a543a9 100644 --- a/drivers/bluetooth/dtl1_cs.c +++ b/drivers/bluetooth/dtl1_cs.c | |||
@@ -720,13 +720,7 @@ static void dtl1_release(dev_link_t *link) | |||
720 | if (link->state & DEV_PRESENT) | 720 | if (link->state & DEV_PRESENT) |
721 | dtl1_close(info); | 721 | dtl1_close(info); |
722 | 722 | ||
723 | link->dev = NULL; | 723 | pcmcia_disable_device(link->handle); |
724 | |||
725 | pcmcia_release_configuration(link->handle); | ||
726 | pcmcia_release_io(link->handle, &link->io); | ||
727 | pcmcia_release_irq(link->handle, &link->irq); | ||
728 | |||
729 | link->state &= ~DEV_CONFIG; | ||
730 | } | 724 | } |
731 | 725 | ||
732 | static int dtl1_suspend(struct pcmcia_device *dev) | 726 | static int dtl1_suspend(struct pcmcia_device *dev) |