You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[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>
This commit is contained in:
@@ -267,23 +267,17 @@ failed:
|
||||
|
||||
void parport_cs_release(dev_link_t *link)
|
||||
{
|
||||
parport_info_t *info = link->priv;
|
||||
|
||||
DEBUG(0, "parport_release(0x%p)\n", link);
|
||||
parport_info_t *info = link->priv;
|
||||
|
||||
if (info->ndev) {
|
||||
struct parport *p = info->port;
|
||||
parport_pc_unregister_port(p);
|
||||
}
|
||||
info->ndev = 0;
|
||||
link->dev = NULL;
|
||||
|
||||
pcmcia_release_configuration(link->handle);
|
||||
pcmcia_release_io(link->handle, &link->io);
|
||||
pcmcia_release_irq(link->handle, &link->irq);
|
||||
|
||||
link->state &= ~DEV_CONFIG;
|
||||
DEBUG(0, "parport_release(0x%p)\n", link);
|
||||
|
||||
if (info->ndev) {
|
||||
struct parport *p = info->port;
|
||||
parport_pc_unregister_port(p);
|
||||
}
|
||||
info->ndev = 0;
|
||||
|
||||
pcmcia_disable_device(link->handle);
|
||||
} /* parport_cs_release */
|
||||
|
||||
static int parport_suspend(struct pcmcia_device *dev)
|
||||
|
||||
Reference in New Issue
Block a user