Skip to content

Commit

Permalink
[PATCH] pcmcia: convert remaining users of pcmcia_release_io and _irq
Browse files Browse the repository at this point in the history
Convert the remaining drivers which use pcmcia_release_io or
pcmcia_release_irq, and remove the EXPORT of these symbols.

Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
  • Loading branch information
Dominik Brodowski committed Mar 31, 2006
1 parent 5f2a71f commit 50db3fd
Show file tree
Hide file tree
Showing 16 changed files with 31 additions and 68 deletions.
4 changes: 2 additions & 2 deletions Documentation/pcmcia/driver-changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ This file details changes in 2.6 which affect PCMCIA card driver authors:
* New release helper (as of 2.6.17)
Instead of calling pcmcia_release_{configuration,io,irq,win}, all that's
necessary now is calling pcmcia_disable_device. As there is no valid
reason left to call pcmcia_release_io and pcmcia_release_irq, they will
be removed soon.
reason left to call pcmcia_release_io and pcmcia_release_irq, the
exports for them were removed.

* Unify detach and REMOVAL event code, as well as attach and INSERTION
code (as of 2.6.16)
Expand Down
10 changes: 5 additions & 5 deletions drivers/isdn/hardware/avm/avm_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -284,25 +284,25 @@ static void avmcs_config(dev_link_t *link)
cs_error(link->handle, RequestIO, i);
break;
}

/*
* allocate an interrupt line
*/
i = pcmcia_request_irq(link->handle, &link->irq);
if (i != CS_SUCCESS) {
cs_error(link->handle, RequestIRQ, i);
pcmcia_release_io(link->handle, &link->io);
/* undo */
pcmcia_disable_device(link->handle);
break;
}

/*
* configure the PCMCIA socket
*/
i = pcmcia_request_configuration(link->handle, &link->conf);
if (i != CS_SUCCESS) {
cs_error(link->handle, RequestConfiguration, i);
pcmcia_release_io(link->handle, &link->io);
pcmcia_release_irq(link->handle, &link->irq);
pcmcia_disable_device(link->handle);
break;
}

Expand Down
8 changes: 4 additions & 4 deletions drivers/isdn/hisax/avma1_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -313,18 +313,18 @@ static void avma1cs_config(dev_link_t *link)
i = pcmcia_request_irq(link->handle, &link->irq);
if (i != CS_SUCCESS) {
cs_error(link->handle, RequestIRQ, i);
pcmcia_release_io(link->handle, &link->io);
/* undo */
pcmcia_disable_device(link->handle);
break;
}

/*
* configure the PCMCIA socket
*/
i = pcmcia_request_configuration(link->handle, &link->conf);
if (i != CS_SUCCESS) {
cs_error(link->handle, RequestConfiguration, i);
pcmcia_release_io(link->handle, &link->io);
pcmcia_release_irq(link->handle, &link->irq);
pcmcia_disable_device(link->handle);
break;
}

Expand Down
8 changes: 2 additions & 6 deletions drivers/isdn/hisax/sedlbauer_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -374,15 +374,11 @@ static void sedlbauer_config(dev_link_t *link)
}
/* If we got this far, we're cool! */
break;

next_entry:
/* new in dummy.cs 2001/01/28 MN
if (link->io.NumPorts1)
pcmcia_release_io(link->handle, &link->io);
*/
CS_CHECK(GetNextTuple, pcmcia_get_next_tuple(handle, &tuple));
}

/*
Allocate an interrupt line. Note that this does not assign a
handler to the interrupt, unless the 'Handler' member of the
Expand Down
10 changes: 8 additions & 2 deletions drivers/net/pcmcia/smc91c92_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
#include <pcmcia/cisreg.h>
#include <pcmcia/ciscode.h>
#include <pcmcia/ds.h>
#include <pcmcia/ss.h>

#include <asm/io.h>
#include <asm/system.h>
Expand Down Expand Up @@ -965,10 +966,15 @@ static int check_sig(dev_link_t *link)

if (width) {
printk(KERN_INFO "smc91c92_cs: using 8-bit IO window.\n");
/* call pcmcia_release_configuration() in _suspend */
smc91c92_suspend(link->handle);
pcmcia_release_io(link->handle, &link->io);

link->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
pcmcia_request_io(link->handle, &link->io);
link->handle->socket->io[0].res->flags &= ~IO_DATA_PATH_WIDTH;
link->handle->socket->io[0].res->flags |= IO_DATA_PATH_WIDTH_8;

/* call pcmcia_request_configuration() in _resume, it handles the
* flag update */
smc91c92_resume(link->handle);
return check_sig(link);
}
Expand Down
3 changes: 1 addition & 2 deletions drivers/net/wireless/orinoco_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,7 @@ orinoco_cs_config(dev_link_t *link)
break;

next_entry:
if (link->io.NumPorts1)
pcmcia_release_io(link->handle, &link->io);
pcmcia_disable_device(handle);
last_ret = pcmcia_get_next_tuple(handle, &tuple);
if (last_ret == CS_NO_MORE_ITEMS) {
printk(KERN_ERR PFX "GetNextTuple(): No matching "
Expand Down
8 changes: 1 addition & 7 deletions drivers/net/wireless/ray_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -849,22 +849,16 @@ static void ray_release(dev_link_t *link)
DEBUG(1, "ray_release(0x%p)\n", link);

del_timer(&local->timer);
link->state &= ~DEV_CONFIG;

iounmap(local->sram);
iounmap(local->rmem);
iounmap(local->amem);
/* Do bother checking to see if these succeed or not */
i = pcmcia_release_window(link->win);
if ( i != CS_SUCCESS ) DEBUG(0,"ReleaseWindow(link->win) ret = %x\n",i);
i = pcmcia_release_window(local->amem_handle);
if ( i != CS_SUCCESS ) DEBUG(0,"ReleaseWindow(local->amem) ret = %x\n",i);
i = pcmcia_release_window(local->rmem_handle);
if ( i != CS_SUCCESS ) DEBUG(0,"ReleaseWindow(local->rmem) ret = %x\n",i);
i = pcmcia_release_configuration(link->handle);
if ( i != CS_SUCCESS ) DEBUG(0,"ReleaseConfiguration ret = %x\n",i);
i = pcmcia_release_irq(link->handle, &link->irq);
if ( i != CS_SUCCESS ) DEBUG(0,"ReleaseIRQ ret = %x\n",i);
pcmcia_disable_device(link->handle);

DEBUG(2,"ray_release ending\n");
}
Expand Down
3 changes: 1 addition & 2 deletions drivers/net/wireless/spectrum_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -790,8 +790,7 @@ spectrum_cs_config(dev_link_t *link)
break;

next_entry:
if (link->io.NumPorts1)
pcmcia_release_io(link->handle, &link->io);
pcmcia_disable_device(handle);
last_ret = pcmcia_get_next_tuple(handle, &tuple);
if (last_ret == CS_NO_MORE_ITEMS) {
printk(KERN_ERR PFX "GetNextTuple(): No matching "
Expand Down
3 changes: 0 additions & 3 deletions drivers/pcmcia/pcmcia_resource.c
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,6 @@ int pcmcia_release_io(struct pcmcia_device *p_dev, io_req_t *req)

return CS_SUCCESS;
} /* pcmcia_release_io */
EXPORT_SYMBOL(pcmcia_release_io);


int pcmcia_release_irq(struct pcmcia_device *p_dev, irq_req_t *req)
Expand Down Expand Up @@ -547,7 +546,6 @@ int pcmcia_release_irq(struct pcmcia_device *p_dev, irq_req_t *req)

return CS_SUCCESS;
} /* pcmcia_release_irq */
EXPORT_SYMBOL(pcmcia_release_irq);


int pcmcia_release_window(window_handle_t win)
Expand Down Expand Up @@ -937,6 +935,5 @@ void pcmcia_disable_device(struct pcmcia_device *p_dev) {
pcmcia_release_window(p_dev->instance->win);

p_dev->instance->dev = NULL;
p_dev->instance->state &= ~DEV_CONFIG;
}
EXPORT_SYMBOL(pcmcia_disable_device);
5 changes: 1 addition & 4 deletions drivers/scsi/pcmcia/nsp_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -1802,10 +1802,7 @@ static void nsp_cs_config(dev_link_t *link)

next_entry:
nsp_dbg(NSP_DEBUG_INIT, "next");

if (link->io.NumPorts1) {
pcmcia_release_io(link->handle, &link->io);
}
pcmcia_disable_device(handle);
CS_CHECK(GetNextTuple, pcmcia_get_next_tuple(handle, &tuple));
}

Expand Down
7 changes: 1 addition & 6 deletions drivers/scsi/pcmcia/qlogic_stub.c
Original file line number Diff line number Diff line change
Expand Up @@ -288,12 +288,7 @@ static void qlogic_config(dev_link_t * link)

cs_failed:
cs_error(link->handle, last_fn, last_ret);
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;
pcmcia_disable_device(link->handle);
return;

} /* qlogic_config */
Expand Down
5 changes: 1 addition & 4 deletions drivers/telephony/ixj_pcmcia.c
Original file line number Diff line number Diff line change
Expand Up @@ -229,10 +229,7 @@ static void ixj_cs_release(dev_link_t *link)
ixj_info_t *info = link->priv;
DEBUG(0, "ixj_cs_release(0x%p)\n", link);
info->ndev = 0;
link->dev = NULL;
pcmcia_release_configuration(link->handle);
pcmcia_release_io(link->handle, &link->io);
link->state &= ~DEV_CONFIG;
pcmcia_disable_device(link->handle);
}

static int ixj_suspend(struct pcmcia_device *dev)
Expand Down
14 changes: 2 additions & 12 deletions drivers/usb/host/sl811_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,19 +154,10 @@ static void sl811_cs_detach(struct pcmcia_device *p_dev)

static void sl811_cs_release(dev_link_t * link)
{

DBG(0, "sl811_cs_release(0x%p)\n", link);

/* Unlink the device chain */
link->dev = NULL;

pcmcia_disable_device(link->handle);
platform_device_unregister(&platform_dev);
pcmcia_release_configuration(link->handle);
if (link->io.NumPorts1)
pcmcia_release_io(link->handle, &link->io);
if (link->irq.AssignedIRQ)
pcmcia_release_irq(link->handle, &link->irq);
link->state &= ~DEV_CONFIG;
}

static void sl811_cs_config(dev_link_t *link)
Expand Down Expand Up @@ -260,8 +251,7 @@ static void sl811_cs_config(dev_link_t *link)
break;

next_entry:
if (link->io.NumPorts1)
pcmcia_release_io(link->handle, &link->io);
pcmcia_disable_device(handle);
last_ret = pcmcia_get_next_tuple(handle, &tuple);
}

Expand Down
2 changes: 0 additions & 2 deletions include/pcmcia/cs.h
Original file line number Diff line number Diff line change
Expand Up @@ -379,8 +379,6 @@ int pcmcia_get_mem_page(window_handle_t win, memreq_t *req);
int pcmcia_map_mem_page(window_handle_t win, memreq_t *req);
int pcmcia_modify_configuration(struct pcmcia_device *p_dev, modconf_t *mod);
int pcmcia_release_configuration(struct pcmcia_device *p_dev);
int pcmcia_release_io(struct pcmcia_device *p_dev, io_req_t *req);
int pcmcia_release_irq(struct pcmcia_device *p_dev, irq_req_t *req);
int pcmcia_release_window(window_handle_t win);
int pcmcia_request_configuration(struct pcmcia_device *p_dev, config_req_t *req);
int pcmcia_request_io(struct pcmcia_device *p_dev, io_req_t *req);
Expand Down
4 changes: 1 addition & 3 deletions sound/pcmcia/pdaudiocf/pdaudiocf.c
Original file line number Diff line number Diff line change
Expand Up @@ -273,9 +273,7 @@ static void pdacf_config(dev_link_t *link)
cs_failed:
cs_error(link->handle, last_fn, last_ret);
failed:
pcmcia_release_configuration(link->handle);
pcmcia_release_io(link->handle, &link->io);
pcmcia_release_irq(link->handle, &link->irq);
pcmcia_disable_device(link->handle);
}

#ifdef CONFIG_PM
Expand Down
5 changes: 1 addition & 4 deletions sound/pcmcia/vx/vxpocket.c
Original file line number Diff line number Diff line change
Expand Up @@ -272,10 +272,7 @@ static void vxpocket_config(dev_link_t *link)
cs_failed:
cs_error(link->handle, last_fn, last_ret);
failed:
pcmcia_release_configuration(link->handle);
pcmcia_release_io(link->handle, &link->io);
pcmcia_release_irq(link->handle, &link->irq);
link->state &= ~DEV_CONFIG;
pcmcia_disable_device(link->handle);
kfree(parse);
}

Expand Down

0 comments on commit 50db3fd

Please sign in to comment.