diff options
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/mac53c94.c | 7 | ||||
-rw-r--r-- | drivers/scsi/mesh.c | 8 | ||||
-rw-r--r-- | drivers/scsi/pcmcia/aha152x_stub.c | 7 | ||||
-rw-r--r-- | drivers/scsi/pcmcia/fdomain_stub.c | 7 | ||||
-rw-r--r-- | drivers/scsi/pcmcia/nsp_cs.c | 17 | ||||
-rw-r--r-- | drivers/scsi/pcmcia/qlogic_stub.c | 4 | ||||
-rw-r--r-- | drivers/scsi/pcmcia/sym53c500_cs.c | 5 |
7 files changed, 16 insertions, 39 deletions
diff --git a/drivers/scsi/mac53c94.c b/drivers/scsi/mac53c94.c index edd47d1f0b17..932dcf0366eb 100644 --- a/drivers/scsi/mac53c94.c +++ b/drivers/scsi/mac53c94.c | |||
@@ -424,7 +424,7 @@ static struct scsi_host_template mac53c94_template = { | |||
424 | .use_clustering = DISABLE_CLUSTERING, | 424 | .use_clustering = DISABLE_CLUSTERING, |
425 | }; | 425 | }; |
426 | 426 | ||
427 | static int mac53c94_probe(struct macio_dev *mdev, const struct of_match *match) | 427 | static int mac53c94_probe(struct macio_dev *mdev, const struct of_device_id *match) |
428 | { | 428 | { |
429 | struct device_node *node = macio_get_of_node(mdev); | 429 | struct device_node *node = macio_get_of_node(mdev); |
430 | struct pci_dev *pdev = macio_get_pci_dev(mdev); | 430 | struct pci_dev *pdev = macio_get_pci_dev(mdev); |
@@ -544,15 +544,14 @@ static int mac53c94_remove(struct macio_dev *mdev) | |||
544 | } | 544 | } |
545 | 545 | ||
546 | 546 | ||
547 | static struct of_match mac53c94_match[] = | 547 | static struct of_device_id mac53c94_match[] = |
548 | { | 548 | { |
549 | { | 549 | { |
550 | .name = "53c94", | 550 | .name = "53c94", |
551 | .type = OF_ANY_MATCH, | ||
552 | .compatible = OF_ANY_MATCH | ||
553 | }, | 551 | }, |
554 | {}, | 552 | {}, |
555 | }; | 553 | }; |
554 | MODULE_DEVICE_TABLE (of, mac53c94_match); | ||
556 | 555 | ||
557 | static struct macio_driver mac53c94_driver = | 556 | static struct macio_driver mac53c94_driver = |
558 | { | 557 | { |
diff --git a/drivers/scsi/mesh.c b/drivers/scsi/mesh.c index b05737ae5eff..ff1933298da6 100644 --- a/drivers/scsi/mesh.c +++ b/drivers/scsi/mesh.c | |||
@@ -1847,7 +1847,7 @@ static struct scsi_host_template mesh_template = { | |||
1847 | .use_clustering = DISABLE_CLUSTERING, | 1847 | .use_clustering = DISABLE_CLUSTERING, |
1848 | }; | 1848 | }; |
1849 | 1849 | ||
1850 | static int mesh_probe(struct macio_dev *mdev, const struct of_match *match) | 1850 | static int mesh_probe(struct macio_dev *mdev, const struct of_device_id *match) |
1851 | { | 1851 | { |
1852 | struct device_node *mesh = macio_get_of_node(mdev); | 1852 | struct device_node *mesh = macio_get_of_node(mdev); |
1853 | struct pci_dev* pdev = macio_get_pci_dev(mdev); | 1853 | struct pci_dev* pdev = macio_get_pci_dev(mdev); |
@@ -2012,20 +2012,18 @@ static int mesh_remove(struct macio_dev *mdev) | |||
2012 | } | 2012 | } |
2013 | 2013 | ||
2014 | 2014 | ||
2015 | static struct of_match mesh_match[] = | 2015 | static struct of_device_id mesh_match[] = |
2016 | { | 2016 | { |
2017 | { | 2017 | { |
2018 | .name = "mesh", | 2018 | .name = "mesh", |
2019 | .type = OF_ANY_MATCH, | ||
2020 | .compatible = OF_ANY_MATCH | ||
2021 | }, | 2019 | }, |
2022 | { | 2020 | { |
2023 | .name = OF_ANY_MATCH, | ||
2024 | .type = "scsi", | 2021 | .type = "scsi", |
2025 | .compatible = "chrp,mesh0" | 2022 | .compatible = "chrp,mesh0" |
2026 | }, | 2023 | }, |
2027 | {}, | 2024 | {}, |
2028 | }; | 2025 | }; |
2026 | MODULE_DEVICE_TABLE (of, mesh_match); | ||
2029 | 2027 | ||
2030 | static struct macio_driver mesh_driver = | 2028 | static struct macio_driver mesh_driver = |
2031 | { | 2029 | { |
diff --git a/drivers/scsi/pcmcia/aha152x_stub.c b/drivers/scsi/pcmcia/aha152x_stub.c index f1f6bf596dc9..7c5306499832 100644 --- a/drivers/scsi/pcmcia/aha152x_stub.c +++ b/drivers/scsi/pcmcia/aha152x_stub.c | |||
@@ -50,7 +50,6 @@ | |||
50 | #include <scsi/scsi_host.h> | 50 | #include <scsi/scsi_host.h> |
51 | #include "aha152x.h" | 51 | #include "aha152x.h" |
52 | 52 | ||
53 | #include <pcmcia/version.h> | ||
54 | #include <pcmcia/cs_types.h> | 53 | #include <pcmcia/cs_types.h> |
55 | #include <pcmcia/cs.h> | 54 | #include <pcmcia/cs.h> |
56 | #include <pcmcia/cistpl.h> | 55 | #include <pcmcia/cistpl.h> |
@@ -134,11 +133,6 @@ static dev_link_t *aha152x_attach(void) | |||
134 | link->next = dev_list; | 133 | link->next = dev_list; |
135 | dev_list = link; | 134 | dev_list = link; |
136 | client_reg.dev_info = &dev_info; | 135 | client_reg.dev_info = &dev_info; |
137 | client_reg.event_handler = &aha152x_event; | ||
138 | client_reg.EventMask = | ||
139 | CS_EVENT_RESET_REQUEST | CS_EVENT_CARD_RESET | | ||
140 | CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL | | ||
141 | CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME; | ||
142 | client_reg.Version = 0x0210; | 136 | client_reg.Version = 0x0210; |
143 | client_reg.event_callback_args.client_data = link; | 137 | client_reg.event_callback_args.client_data = link; |
144 | ret = pcmcia_register_client(&link->handle, &client_reg); | 138 | ret = pcmcia_register_client(&link->handle, &client_reg); |
@@ -334,6 +328,7 @@ static struct pcmcia_driver aha152x_cs_driver = { | |||
334 | .name = "aha152x_cs", | 328 | .name = "aha152x_cs", |
335 | }, | 329 | }, |
336 | .attach = aha152x_attach, | 330 | .attach = aha152x_attach, |
331 | .event = aha152x_event, | ||
337 | .detach = aha152x_detach, | 332 | .detach = aha152x_detach, |
338 | .id_table = aha152x_ids, | 333 | .id_table = aha152x_ids, |
339 | }; | 334 | }; |
diff --git a/drivers/scsi/pcmcia/fdomain_stub.c b/drivers/scsi/pcmcia/fdomain_stub.c index 853e6ee9b71a..db8f5cd85ffe 100644 --- a/drivers/scsi/pcmcia/fdomain_stub.c +++ b/drivers/scsi/pcmcia/fdomain_stub.c | |||
@@ -47,7 +47,6 @@ | |||
47 | #include <scsi/scsi_host.h> | 47 | #include <scsi/scsi_host.h> |
48 | #include "fdomain.h" | 48 | #include "fdomain.h" |
49 | 49 | ||
50 | #include <pcmcia/version.h> | ||
51 | #include <pcmcia/cs_types.h> | 50 | #include <pcmcia/cs_types.h> |
52 | #include <pcmcia/cs.h> | 51 | #include <pcmcia/cs.h> |
53 | #include <pcmcia/cistpl.h> | 52 | #include <pcmcia/cistpl.h> |
@@ -120,11 +119,6 @@ static dev_link_t *fdomain_attach(void) | |||
120 | link->next = dev_list; | 119 | link->next = dev_list; |
121 | dev_list = link; | 120 | dev_list = link; |
122 | client_reg.dev_info = &dev_info; | 121 | client_reg.dev_info = &dev_info; |
123 | client_reg.event_handler = &fdomain_event; | ||
124 | client_reg.EventMask = | ||
125 | CS_EVENT_RESET_REQUEST | CS_EVENT_CARD_RESET | | ||
126 | CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL | | ||
127 | CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME; | ||
128 | client_reg.Version = 0x0210; | 122 | client_reg.Version = 0x0210; |
129 | client_reg.event_callback_args.client_data = link; | 123 | client_reg.event_callback_args.client_data = link; |
130 | ret = pcmcia_register_client(&link->handle, &client_reg); | 124 | ret = pcmcia_register_client(&link->handle, &client_reg); |
@@ -314,6 +308,7 @@ static struct pcmcia_driver fdomain_cs_driver = { | |||
314 | .name = "fdomain_cs", | 308 | .name = "fdomain_cs", |
315 | }, | 309 | }, |
316 | .attach = fdomain_attach, | 310 | .attach = fdomain_attach, |
311 | .event = fdomain_event, | ||
317 | .detach = fdomain_detach, | 312 | .detach = fdomain_detach, |
318 | .id_table = fdomain_ids, | 313 | .id_table = fdomain_ids, |
319 | }; | 314 | }; |
diff --git a/drivers/scsi/pcmcia/nsp_cs.c b/drivers/scsi/pcmcia/nsp_cs.c index 91b3f28e7a19..3cd3b40b1a4c 100644 --- a/drivers/scsi/pcmcia/nsp_cs.c +++ b/drivers/scsi/pcmcia/nsp_cs.c | |||
@@ -51,7 +51,6 @@ | |||
51 | #include <scsi/scsi.h> | 51 | #include <scsi/scsi.h> |
52 | #include <scsi/scsi_ioctl.h> | 52 | #include <scsi/scsi_ioctl.h> |
53 | 53 | ||
54 | #include <pcmcia/version.h> | ||
55 | #include <pcmcia/cs_types.h> | 54 | #include <pcmcia/cs_types.h> |
56 | #include <pcmcia/cs.h> | 55 | #include <pcmcia/cs.h> |
57 | #include <pcmcia/cistpl.h> | 56 | #include <pcmcia/cistpl.h> |
@@ -1642,11 +1641,6 @@ static dev_link_t *nsp_cs_attach(void) | |||
1642 | link->next = dev_list; | 1641 | link->next = dev_list; |
1643 | dev_list = link; | 1642 | dev_list = link; |
1644 | client_reg.dev_info = &dev_info; | 1643 | client_reg.dev_info = &dev_info; |
1645 | client_reg.EventMask = | ||
1646 | CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL | | ||
1647 | CS_EVENT_RESET_PHYSICAL | CS_EVENT_CARD_RESET | | ||
1648 | CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME ; | ||
1649 | client_reg.event_handler = &nsp_cs_event; | ||
1650 | client_reg.Version = 0x0210; | 1644 | client_reg.Version = 0x0210; |
1651 | client_reg.event_callback_args.client_data = link; | 1645 | client_reg.event_callback_args.client_data = link; |
1652 | ret = pcmcia_register_client(&link->handle, &client_reg); | 1646 | ret = pcmcia_register_client(&link->handle, &client_reg); |
@@ -2138,12 +2132,13 @@ static struct pcmcia_device_id nsp_cs_ids[] = { | |||
2138 | MODULE_DEVICE_TABLE(pcmcia, nsp_cs_ids); | 2132 | MODULE_DEVICE_TABLE(pcmcia, nsp_cs_ids); |
2139 | 2133 | ||
2140 | static struct pcmcia_driver nsp_driver = { | 2134 | static struct pcmcia_driver nsp_driver = { |
2141 | .owner = THIS_MODULE, | 2135 | .owner = THIS_MODULE, |
2142 | .drv = { | 2136 | .drv = { |
2143 | .name = "nsp_cs", | 2137 | .name = "nsp_cs", |
2144 | }, | 2138 | }, |
2145 | .attach = nsp_cs_attach, | 2139 | .attach = nsp_cs_attach, |
2146 | .detach = nsp_cs_detach, | 2140 | .event = nsp_cs_event, |
2141 | .detach = nsp_cs_detach, | ||
2147 | .id_table = nsp_cs_ids, | 2142 | .id_table = nsp_cs_ids, |
2148 | }; | 2143 | }; |
2149 | #endif | 2144 | #endif |
diff --git a/drivers/scsi/pcmcia/qlogic_stub.c b/drivers/scsi/pcmcia/qlogic_stub.c index 0dcf41102abf..7a516f35834e 100644 --- a/drivers/scsi/pcmcia/qlogic_stub.c +++ b/drivers/scsi/pcmcia/qlogic_stub.c | |||
@@ -49,7 +49,6 @@ | |||
49 | #include <scsi/scsi_host.h> | 49 | #include <scsi/scsi_host.h> |
50 | #include "../qlogicfas408.h" | 50 | #include "../qlogicfas408.h" |
51 | 51 | ||
52 | #include <pcmcia/version.h> | ||
53 | #include <pcmcia/cs_types.h> | 52 | #include <pcmcia/cs_types.h> |
54 | #include <pcmcia/cs.h> | 53 | #include <pcmcia/cs.h> |
55 | #include <pcmcia/cistpl.h> | 54 | #include <pcmcia/cistpl.h> |
@@ -194,8 +193,6 @@ static dev_link_t *qlogic_attach(void) | |||
194 | link->next = dev_list; | 193 | link->next = dev_list; |
195 | dev_list = link; | 194 | dev_list = link; |
196 | client_reg.dev_info = &dev_info; | 195 | client_reg.dev_info = &dev_info; |
197 | client_reg.event_handler = &qlogic_event; | ||
198 | client_reg.EventMask = CS_EVENT_RESET_REQUEST | CS_EVENT_CARD_RESET | CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL | CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME; | ||
199 | client_reg.Version = 0x0210; | 196 | client_reg.Version = 0x0210; |
200 | client_reg.event_callback_args.client_data = link; | 197 | client_reg.event_callback_args.client_data = link; |
201 | ret = pcmcia_register_client(&link->handle, &client_reg); | 198 | ret = pcmcia_register_client(&link->handle, &client_reg); |
@@ -423,6 +420,7 @@ static struct pcmcia_driver qlogic_cs_driver = { | |||
423 | .name = "qlogic_cs", | 420 | .name = "qlogic_cs", |
424 | }, | 421 | }, |
425 | .attach = qlogic_attach, | 422 | .attach = qlogic_attach, |
423 | .event = qlogic_event, | ||
426 | .detach = qlogic_detach, | 424 | .detach = qlogic_detach, |
427 | .id_table = qlogic_ids, | 425 | .id_table = qlogic_ids, |
428 | }; | 426 | }; |
diff --git a/drivers/scsi/pcmcia/sym53c500_cs.c b/drivers/scsi/pcmcia/sym53c500_cs.c index 7d4b16b6797d..b4b3a1a8a0c7 100644 --- a/drivers/scsi/pcmcia/sym53c500_cs.c +++ b/drivers/scsi/pcmcia/sym53c500_cs.c | |||
@@ -979,10 +979,6 @@ SYM53C500_attach(void) | |||
979 | link->next = dev_list; | 979 | link->next = dev_list; |
980 | dev_list = link; | 980 | dev_list = link; |
981 | client_reg.dev_info = &dev_info; | 981 | client_reg.dev_info = &dev_info; |
982 | client_reg.event_handler = &SYM53C500_event; | ||
983 | client_reg.EventMask = CS_EVENT_RESET_REQUEST | CS_EVENT_CARD_RESET | | ||
984 | CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL | | ||
985 | CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME; | ||
986 | client_reg.Version = 0x0210; | 982 | client_reg.Version = 0x0210; |
987 | client_reg.event_callback_args.client_data = link; | 983 | client_reg.event_callback_args.client_data = link; |
988 | ret = pcmcia_register_client(&link->handle, &client_reg); | 984 | ret = pcmcia_register_client(&link->handle, &client_reg); |
@@ -1013,6 +1009,7 @@ static struct pcmcia_driver sym53c500_cs_driver = { | |||
1013 | .name = "sym53c500_cs", | 1009 | .name = "sym53c500_cs", |
1014 | }, | 1010 | }, |
1015 | .attach = SYM53C500_attach, | 1011 | .attach = SYM53C500_attach, |
1012 | .event = SYM53C500_event, | ||
1016 | .detach = SYM53C500_detach, | 1013 | .detach = SYM53C500_detach, |
1017 | .id_table = sym53c500_ids, | 1014 | .id_table = sym53c500_ids, |
1018 | }; | 1015 | }; |