diff options
Diffstat (limited to 'drivers/bcma/host_pci.c')
-rw-r--r-- | drivers/bcma/host_pci.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/bcma/host_pci.c b/drivers/bcma/host_pci.c index 98fdc3e014e7..fbf2759e7e4e 100644 --- a/drivers/bcma/host_pci.c +++ b/drivers/bcma/host_pci.c | |||
@@ -155,8 +155,8 @@ static const struct bcma_host_ops bcma_host_pci_ops = { | |||
155 | .awrite32 = bcma_host_pci_awrite32, | 155 | .awrite32 = bcma_host_pci_awrite32, |
156 | }; | 156 | }; |
157 | 157 | ||
158 | static int __devinit bcma_host_pci_probe(struct pci_dev *dev, | 158 | static int bcma_host_pci_probe(struct pci_dev *dev, |
159 | const struct pci_device_id *id) | 159 | const struct pci_device_id *id) |
160 | { | 160 | { |
161 | struct bcma_bus *bus; | 161 | struct bcma_bus *bus; |
162 | int err = -ENOMEM; | 162 | int err = -ENOMEM; |
@@ -226,7 +226,7 @@ err_kfree_bus: | |||
226 | return err; | 226 | return err; |
227 | } | 227 | } |
228 | 228 | ||
229 | static void __devexit bcma_host_pci_remove(struct pci_dev *dev) | 229 | static void bcma_host_pci_remove(struct pci_dev *dev) |
230 | { | 230 | { |
231 | struct bcma_bus *bus = pci_get_drvdata(dev); | 231 | struct bcma_bus *bus = pci_get_drvdata(dev); |
232 | 232 | ||
@@ -284,7 +284,7 @@ static struct pci_driver bcma_pci_bridge_driver = { | |||
284 | .name = "bcma-pci-bridge", | 284 | .name = "bcma-pci-bridge", |
285 | .id_table = bcma_pci_bridge_tbl, | 285 | .id_table = bcma_pci_bridge_tbl, |
286 | .probe = bcma_host_pci_probe, | 286 | .probe = bcma_host_pci_probe, |
287 | .remove = __devexit_p(bcma_host_pci_remove), | 287 | .remove = bcma_host_pci_remove, |
288 | .driver.pm = BCMA_PM_OPS, | 288 | .driver.pm = BCMA_PM_OPS, |
289 | }; | 289 | }; |
290 | 290 | ||