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 | |
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')
-rw-r--r-- | drivers/bluetooth/bluecard_cs.c | 24 | ||||
-rw-r--r-- | drivers/bluetooth/bt3c_cs.c | 24 | ||||
-rw-r--r-- | drivers/bluetooth/btuart_cs.c | 25 | ||||
-rw-r--r-- | drivers/bluetooth/dtl1_cs.c | 24 |
4 files changed, 0 insertions, 97 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) |
diff --git a/drivers/bluetooth/bt3c_cs.c b/drivers/bluetooth/bt3c_cs.c index ac1410c0a43e..7b0f4f0beada 100644 --- a/drivers/bluetooth/bt3c_cs.c +++ b/drivers/bluetooth/bt3c_cs.c | |||
@@ -842,28 +842,6 @@ static void bt3c_release(dev_link_t *link) | |||
842 | pcmcia_disable_device(link->handle); | 842 | pcmcia_disable_device(link->handle); |
843 | } | 843 | } |
844 | 844 | ||
845 | static int bt3c_suspend(struct pcmcia_device *dev) | ||
846 | { | ||
847 | dev_link_t *link = dev_to_instance(dev); | ||
848 | |||
849 | link->state |= DEV_SUSPEND; | ||
850 | if (link->state & DEV_CONFIG) | ||
851 | pcmcia_release_configuration(link->handle); | ||
852 | |||
853 | return 0; | ||
854 | } | ||
855 | |||
856 | static int bt3c_resume(struct pcmcia_device *dev) | ||
857 | { | ||
858 | dev_link_t *link = dev_to_instance(dev); | ||
859 | |||
860 | link->state &= ~DEV_SUSPEND; | ||
861 | if (DEV_OK(link)) | ||
862 | pcmcia_request_configuration(link->handle, &link->conf); | ||
863 | |||
864 | return 0; | ||
865 | } | ||
866 | |||
867 | 845 | ||
868 | static struct pcmcia_device_id bt3c_ids[] = { | 846 | static struct pcmcia_device_id bt3c_ids[] = { |
869 | PCMCIA_DEVICE_PROD_ID13("3COM", "Bluetooth PC Card", 0xefce0a31, 0xd4ce9b02), | 847 | PCMCIA_DEVICE_PROD_ID13("3COM", "Bluetooth PC Card", 0xefce0a31, 0xd4ce9b02), |
@@ -879,8 +857,6 @@ static struct pcmcia_driver bt3c_driver = { | |||
879 | .probe = bt3c_attach, | 857 | .probe = bt3c_attach, |
880 | .remove = bt3c_detach, | 858 | .remove = bt3c_detach, |
881 | .id_table = bt3c_ids, | 859 | .id_table = bt3c_ids, |
882 | .suspend = bt3c_suspend, | ||
883 | .resume = bt3c_resume, | ||
884 | }; | 860 | }; |
885 | 861 | ||
886 | static int __init init_bt3c_cs(void) | 862 | static int __init init_bt3c_cs(void) |
diff --git a/drivers/bluetooth/btuart_cs.c b/drivers/bluetooth/btuart_cs.c index 8cd54bb199f9..9a507bdb8bc6 100644 --- a/drivers/bluetooth/btuart_cs.c +++ b/drivers/bluetooth/btuart_cs.c | |||
@@ -771,29 +771,6 @@ static void btuart_release(dev_link_t *link) | |||
771 | pcmcia_disable_device(link->handle); | 771 | pcmcia_disable_device(link->handle); |
772 | } | 772 | } |
773 | 773 | ||
774 | static int btuart_suspend(struct pcmcia_device *dev) | ||
775 | { | ||
776 | dev_link_t *link = dev_to_instance(dev); | ||
777 | |||
778 | link->state |= DEV_SUSPEND; | ||
779 | if (link->state & DEV_CONFIG) | ||
780 | pcmcia_release_configuration(link->handle); | ||
781 | |||
782 | return 0; | ||
783 | } | ||
784 | |||
785 | static int btuart_resume(struct pcmcia_device *dev) | ||
786 | { | ||
787 | dev_link_t *link = dev_to_instance(dev); | ||
788 | |||
789 | link->state &= ~DEV_SUSPEND; | ||
790 | if (DEV_OK(link)) | ||
791 | pcmcia_request_configuration(link->handle, &link->conf); | ||
792 | |||
793 | return 0; | ||
794 | } | ||
795 | |||
796 | |||
797 | static struct pcmcia_device_id btuart_ids[] = { | 774 | static struct pcmcia_device_id btuart_ids[] = { |
798 | /* don't use this driver. Use serial_cs + hci_uart instead */ | 775 | /* don't use this driver. Use serial_cs + hci_uart instead */ |
799 | PCMCIA_DEVICE_NULL | 776 | PCMCIA_DEVICE_NULL |
@@ -808,8 +785,6 @@ static struct pcmcia_driver btuart_driver = { | |||
808 | .probe = btuart_attach, | 785 | .probe = btuart_attach, |
809 | .remove = btuart_detach, | 786 | .remove = btuart_detach, |
810 | .id_table = btuart_ids, | 787 | .id_table = btuart_ids, |
811 | .suspend = btuart_suspend, | ||
812 | .resume = btuart_resume, | ||
813 | }; | 788 | }; |
814 | 789 | ||
815 | static int __init init_btuart_cs(void) | 790 | static int __init init_btuart_cs(void) |
diff --git a/drivers/bluetooth/dtl1_cs.c b/drivers/bluetooth/dtl1_cs.c index efbc8a543a9a..39dbe7300d0f 100644 --- a/drivers/bluetooth/dtl1_cs.c +++ b/drivers/bluetooth/dtl1_cs.c | |||
@@ -723,28 +723,6 @@ static void dtl1_release(dev_link_t *link) | |||
723 | pcmcia_disable_device(link->handle); | 723 | pcmcia_disable_device(link->handle); |
724 | } | 724 | } |
725 | 725 | ||
726 | static int dtl1_suspend(struct pcmcia_device *dev) | ||
727 | { | ||
728 | dev_link_t *link = dev_to_instance(dev); | ||
729 | |||
730 | link->state |= DEV_SUSPEND; | ||
731 | if (link->state & DEV_CONFIG) | ||
732 | pcmcia_release_configuration(link->handle); | ||
733 | |||
734 | return 0; | ||
735 | } | ||
736 | |||
737 | static int dtl1_resume(struct pcmcia_device *dev) | ||
738 | { | ||
739 | dev_link_t *link = dev_to_instance(dev); | ||
740 | |||
741 | link->state &= ~DEV_SUSPEND; | ||
742 | if (DEV_OK(link)) | ||
743 | pcmcia_request_configuration(link->handle, &link->conf); | ||
744 | |||
745 | return 0; | ||
746 | } | ||
747 | |||
748 | 726 | ||
749 | static struct pcmcia_device_id dtl1_ids[] = { | 727 | static struct pcmcia_device_id dtl1_ids[] = { |
750 | PCMCIA_DEVICE_PROD_ID12("Nokia Mobile Phones", "DTL-1", 0xe1bfdd64, 0xe168480d), | 728 | PCMCIA_DEVICE_PROD_ID12("Nokia Mobile Phones", "DTL-1", 0xe1bfdd64, 0xe168480d), |
@@ -762,8 +740,6 @@ static struct pcmcia_driver dtl1_driver = { | |||
762 | .probe = dtl1_attach, | 740 | .probe = dtl1_attach, |
763 | .remove = dtl1_detach, | 741 | .remove = dtl1_detach, |
764 | .id_table = dtl1_ids, | 742 | .id_table = dtl1_ids, |
765 | .suspend = dtl1_suspend, | ||
766 | .resume = dtl1_resume, | ||
767 | }; | 743 | }; |
768 | 744 | ||
769 | static int __init init_dtl1_cs(void) | 745 | static int __init init_dtl1_cs(void) |