diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-01-19 02:53:13 -0500 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2006-03-31 10:26:31 -0500 |
commit | b4c884000a7d3664dd8ad7227241456bd7824d86 (patch) | |
tree | 8dc2f537199835f149e16cc523b510a0f48dc89e /drivers/pcmcia/pcmcia_resource.c | |
parent | 15b99ac1729503db9e6dc642a50b9b6cb3bf51f9 (diff) |
[PATCH] pcmcia: make pcmcia_release_{io,irq} static
We can now make pcmcia_release_{io,irq} static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/pcmcia/pcmcia_resource.c')
-rw-r--r-- | drivers/pcmcia/pcmcia_resource.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pcmcia/pcmcia_resource.c b/drivers/pcmcia/pcmcia_resource.c index 93ab9402d37f..dbf167c979f6 100644 --- a/drivers/pcmcia/pcmcia_resource.c +++ b/drivers/pcmcia/pcmcia_resource.c | |||
@@ -511,7 +511,7 @@ int pcmcia_release_configuration(struct pcmcia_device *p_dev) | |||
511 | * don't bother checking the port ranges against the current socket | 511 | * don't bother checking the port ranges against the current socket |
512 | * values. | 512 | * values. |
513 | */ | 513 | */ |
514 | int pcmcia_release_io(struct pcmcia_device *p_dev, io_req_t *req) | 514 | static int pcmcia_release_io(struct pcmcia_device *p_dev, io_req_t *req) |
515 | { | 515 | { |
516 | struct pcmcia_socket *s = p_dev->socket; | 516 | struct pcmcia_socket *s = p_dev->socket; |
517 | config_t *c = p_dev->function_config; | 517 | config_t *c = p_dev->function_config; |
@@ -537,7 +537,7 @@ int pcmcia_release_io(struct pcmcia_device *p_dev, io_req_t *req) | |||
537 | } /* pcmcia_release_io */ | 537 | } /* pcmcia_release_io */ |
538 | 538 | ||
539 | 539 | ||
540 | int pcmcia_release_irq(struct pcmcia_device *p_dev, irq_req_t *req) | 540 | static int pcmcia_release_irq(struct pcmcia_device *p_dev, irq_req_t *req) |
541 | { | 541 | { |
542 | struct pcmcia_socket *s = p_dev->socket; | 542 | struct pcmcia_socket *s = p_dev->socket; |
543 | config_t *c= p_dev->function_config; | 543 | config_t *c= p_dev->function_config; |