diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2006-03-01 18:02:33 -0500 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2006-03-31 10:15:52 -0500 |
commit | 8661bb5b4af1849c1f5a4e80c4e275fd13c155d6 (patch) | |
tree | ad99d85ea8d6f5c4c99b93f869bfd412994fb4ee /drivers/bluetooth/bluecard_cs.c | |
parent | 50db3fdbbc98260fb538c1cc3f8cc597ba7bffe7 (diff) |
[PATCH] pcmcia: default suspend and resume handling
In all but one case, the suspend and resume functions of PCMCIA drivers
contain mostly of calls to pcmcia_release_configuration() and
pcmcia_request_configuration(). Therefore, move this code out of the
drivers and into the core.
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/bluetooth/bluecard_cs.c')
-rw-r--r-- | drivers/bluetooth/bluecard_cs.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/drivers/bluetooth/bluecard_cs.c b/drivers/bluetooth/bluecard_cs.c index 128e41609a5d..bb833b251b68 100644 --- a/drivers/bluetooth/bluecard_cs.c +++ b/drivers/bluetooth/bluecard_cs.c | |||
@@ -1005,28 +1005,6 @@ static void bluecard_release(dev_link_t *link) | |||
1005 | pcmcia_disable_device(link->handle); | 1005 | pcmcia_disable_device(link->handle); |
1006 | } | 1006 | } |
1007 | 1007 | ||
1008 | static int bluecard_suspend(struct pcmcia_device *dev) | ||
1009 | { | ||
1010 | dev_link_t *link = dev_to_instance(dev); | ||
1011 | |||
1012 | link->state |= DEV_SUSPEND; | ||
1013 | if (link->state & DEV_CONFIG) | ||
1014 | pcmcia_release_configuration(link->handle); | ||
1015 | |||
1016 | return 0; | ||
1017 | } | ||
1018 | |||
1019 | static int bluecard_resume(struct pcmcia_device *dev) | ||
1020 | { | ||
1021 | dev_link_t *link = dev_to_instance(dev); | ||
1022 | |||
1023 | link->state &= ~DEV_SUSPEND; | ||
1024 | if (DEV_OK(link)) | ||
1025 | pcmcia_request_configuration(link->handle, &link->conf); | ||
1026 | |||
1027 | return 0; | ||
1028 | } | ||
1029 | |||
1030 | static struct pcmcia_device_id bluecard_ids[] = { | 1008 | static struct pcmcia_device_id bluecard_ids[] = { |
1031 | PCMCIA_DEVICE_PROD_ID12("BlueCard", "LSE041", 0xbaf16fbf, 0x657cc15e), | 1009 | PCMCIA_DEVICE_PROD_ID12("BlueCard", "LSE041", 0xbaf16fbf, 0x657cc15e), |
1032 | PCMCIA_DEVICE_PROD_ID12("BTCFCARD", "LSE139", 0xe3987764, 0x2524b59c), | 1010 | PCMCIA_DEVICE_PROD_ID12("BTCFCARD", "LSE139", 0xe3987764, 0x2524b59c), |
@@ -1043,8 +1021,6 @@ static struct pcmcia_driver bluecard_driver = { | |||
1043 | .probe = bluecard_attach, | 1021 | .probe = bluecard_attach, |
1044 | .remove = bluecard_detach, | 1022 | .remove = bluecard_detach, |
1045 | .id_table = bluecard_ids, | 1023 | .id_table = bluecard_ids, |
1046 | .suspend = bluecard_suspend, | ||
1047 | .resume = bluecard_resume, | ||
1048 | }; | 1024 | }; |
1049 | 1025 | ||
1050 | static int __init init_bluecard_cs(void) | 1026 | static int __init init_bluecard_cs(void) |