aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/dma/dw_dmac.c2
-rw-r--r--drivers/dma/edma.c2
-rw-r--r--drivers/dma/intel_mid_dma.c2
-rw-r--r--drivers/dma/ioat/pci.c2
-rw-r--r--drivers/dma/iop-adma.c2
-rw-r--r--drivers/dma/mmp_pdma.c2
-rw-r--r--drivers/dma/mmp_tdma.c2
-rw-r--r--drivers/dma/mpc512x_dma.c2
-rw-r--r--drivers/dma/mv_xor.c2
-rw-r--r--drivers/dma/pch_dma.c2
-rw-r--r--drivers/dma/ppc4xx/adma.c2
-rw-r--r--drivers/dma/sa11x0-dma.c2
-rw-r--r--drivers/dma/sh/shdma.c2
-rw-r--r--drivers/dma/sirf-dma.c2
-rw-r--r--drivers/dma/tegra20-apb-dma.c2
15 files changed, 15 insertions, 15 deletions
diff --git a/drivers/dma/dw_dmac.c b/drivers/dma/dw_dmac.c
index c4b0eb3cde81..3b21818719d2 100644
--- a/drivers/dma/dw_dmac.c
+++ b/drivers/dma/dw_dmac.c
@@ -1700,7 +1700,7 @@ MODULE_DEVICE_TABLE(of, dw_dma_id_table);
1700#endif 1700#endif
1701 1701
1702static struct platform_driver dw_driver = { 1702static struct platform_driver dw_driver = {
1703 .remove = __devexit_p(dw_remove), 1703 .remove = dw_remove,
1704 .shutdown = dw_shutdown, 1704 .shutdown = dw_shutdown,
1705 .driver = { 1705 .driver = {
1706 .name = "dw_dmac", 1706 .name = "dw_dmac",
diff --git a/drivers/dma/edma.c b/drivers/dma/edma.c
index 05aea3ce8506..5e5cce4ec720 100644
--- a/drivers/dma/edma.c
+++ b/drivers/dma/edma.c
@@ -598,7 +598,7 @@ static int __devexit edma_remove(struct platform_device *pdev)
598 598
599static struct platform_driver edma_driver = { 599static struct platform_driver edma_driver = {
600 .probe = edma_probe, 600 .probe = edma_probe,
601 .remove = __devexit_p(edma_remove), 601 .remove = edma_remove,
602 .driver = { 602 .driver = {
603 .name = "edma-dma-engine", 603 .name = "edma-dma-engine",
604 .owner = THIS_MODULE, 604 .owner = THIS_MODULE,
diff --git a/drivers/dma/intel_mid_dma.c b/drivers/dma/intel_mid_dma.c
index 02b21d7d38e5..dffdeffe2c4e 100644
--- a/drivers/dma/intel_mid_dma.c
+++ b/drivers/dma/intel_mid_dma.c
@@ -1432,7 +1432,7 @@ static struct pci_driver intel_mid_dma_pci_driver = {
1432 .name = "Intel MID DMA", 1432 .name = "Intel MID DMA",
1433 .id_table = intel_mid_dma_ids, 1433 .id_table = intel_mid_dma_ids,
1434 .probe = intel_mid_dma_probe, 1434 .probe = intel_mid_dma_probe,
1435 .remove = __devexit_p(intel_mid_dma_remove), 1435 .remove = intel_mid_dma_remove,
1436#ifdef CONFIG_PM 1436#ifdef CONFIG_PM
1437 .driver = { 1437 .driver = {
1438 .pm = &intel_mid_dma_pm, 1438 .pm = &intel_mid_dma_pm,
diff --git a/drivers/dma/ioat/pci.c b/drivers/dma/ioat/pci.c
index c0573061b45d..bfa9a3536e09 100644
--- a/drivers/dma/ioat/pci.c
+++ b/drivers/dma/ioat/pci.c
@@ -125,7 +125,7 @@ static struct pci_driver ioat_pci_driver = {
125 .name = DRV_NAME, 125 .name = DRV_NAME,
126 .id_table = ioat_pci_tbl, 126 .id_table = ioat_pci_tbl,
127 .probe = ioat_pci_probe, 127 .probe = ioat_pci_probe,
128 .remove = __devexit_p(ioat_remove), 128 .remove = ioat_remove,
129}; 129};
130 130
131static struct ioatdma_device * 131static struct ioatdma_device *
diff --git a/drivers/dma/iop-adma.c b/drivers/dma/iop-adma.c
index 79e3eba29702..f4a8668b3467 100644
--- a/drivers/dma/iop-adma.c
+++ b/drivers/dma/iop-adma.c
@@ -1711,7 +1711,7 @@ static void iop_chan_start_null_xor(struct iop_adma_chan *iop_chan)
1711 1711
1712static struct platform_driver iop_adma_driver = { 1712static struct platform_driver iop_adma_driver = {
1713 .probe = iop_adma_probe, 1713 .probe = iop_adma_probe,
1714 .remove = __devexit_p(iop_adma_remove), 1714 .remove = iop_adma_remove,
1715 .driver = { 1715 .driver = {
1716 .owner = THIS_MODULE, 1716 .owner = THIS_MODULE,
1717 .name = "iop-adma", 1717 .name = "iop-adma",
diff --git a/drivers/dma/mmp_pdma.c b/drivers/dma/mmp_pdma.c
index 14da1f403edf..4777986adbaf 100644
--- a/drivers/dma/mmp_pdma.c
+++ b/drivers/dma/mmp_pdma.c
@@ -865,7 +865,7 @@ static struct platform_driver mmp_pdma_driver = {
865 }, 865 },
866 .id_table = mmp_pdma_id_table, 866 .id_table = mmp_pdma_id_table,
867 .probe = mmp_pdma_probe, 867 .probe = mmp_pdma_probe,
868 .remove = __devexit_p(mmp_pdma_remove), 868 .remove = mmp_pdma_remove,
869}; 869};
870 870
871module_platform_driver(mmp_pdma_driver); 871module_platform_driver(mmp_pdma_driver);
diff --git a/drivers/dma/mmp_tdma.c b/drivers/dma/mmp_tdma.c
index f3e8d71bcbc7..7d7fc6b19261 100644
--- a/drivers/dma/mmp_tdma.c
+++ b/drivers/dma/mmp_tdma.c
@@ -609,7 +609,7 @@ static struct platform_driver mmp_tdma_driver = {
609 }, 609 },
610 .id_table = mmp_tdma_id_table, 610 .id_table = mmp_tdma_id_table,
611 .probe = mmp_tdma_probe, 611 .probe = mmp_tdma_probe,
612 .remove = __devexit_p(mmp_tdma_remove), 612 .remove = mmp_tdma_remove,
613}; 613};
614 614
615module_platform_driver(mmp_tdma_driver); 615module_platform_driver(mmp_tdma_driver);
diff --git a/drivers/dma/mpc512x_dma.c b/drivers/dma/mpc512x_dma.c
index 2ab0a3d0eed5..4b8754b9a2df 100644
--- a/drivers/dma/mpc512x_dma.c
+++ b/drivers/dma/mpc512x_dma.c
@@ -818,7 +818,7 @@ static struct of_device_id mpc_dma_match[] = {
818 818
819static struct platform_driver mpc_dma_driver = { 819static struct platform_driver mpc_dma_driver = {
820 .probe = mpc_dma_probe, 820 .probe = mpc_dma_probe,
821 .remove = __devexit_p(mpc_dma_remove), 821 .remove = mpc_dma_remove,
822 .driver = { 822 .driver = {
823 .name = DRV_NAME, 823 .name = DRV_NAME,
824 .owner = THIS_MODULE, 824 .owner = THIS_MODULE,
diff --git a/drivers/dma/mv_xor.c b/drivers/dma/mv_xor.c
index e362e2b80efb..2e9ad2d9fe44 100644
--- a/drivers/dma/mv_xor.c
+++ b/drivers/dma/mv_xor.c
@@ -1262,7 +1262,7 @@ mv_xor_conf_mbus_windows(struct mv_xor_shared_private *msp,
1262 1262
1263static struct platform_driver mv_xor_driver = { 1263static struct platform_driver mv_xor_driver = {
1264 .probe = mv_xor_probe, 1264 .probe = mv_xor_probe,
1265 .remove = __devexit_p(mv_xor_remove), 1265 .remove = mv_xor_remove,
1266 .driver = { 1266 .driver = {
1267 .owner = THIS_MODULE, 1267 .owner = THIS_MODULE,
1268 .name = MV_XOR_NAME, 1268 .name = MV_XOR_NAME,
diff --git a/drivers/dma/pch_dma.c b/drivers/dma/pch_dma.c
index 987ab5cd2617..f7f1c1947089 100644
--- a/drivers/dma/pch_dma.c
+++ b/drivers/dma/pch_dma.c
@@ -1022,7 +1022,7 @@ static struct pci_driver pch_dma_driver = {
1022 .name = DRV_NAME, 1022 .name = DRV_NAME,
1023 .id_table = pch_dma_id_table, 1023 .id_table = pch_dma_id_table,
1024 .probe = pch_dma_probe, 1024 .probe = pch_dma_probe,
1025 .remove = __devexit_p(pch_dma_remove), 1025 .remove = pch_dma_remove,
1026#ifdef CONFIG_PM 1026#ifdef CONFIG_PM
1027 .suspend = pch_dma_suspend, 1027 .suspend = pch_dma_suspend,
1028 .resume = pch_dma_resume, 1028 .resume = pch_dma_resume,
diff --git a/drivers/dma/ppc4xx/adma.c b/drivers/dma/ppc4xx/adma.c
index f72348d0bc41..5c6717c48f48 100644
--- a/drivers/dma/ppc4xx/adma.c
+++ b/drivers/dma/ppc4xx/adma.c
@@ -4914,7 +4914,7 @@ MODULE_DEVICE_TABLE(of, ppc440spe_adma_of_match);
4914 4914
4915static struct platform_driver ppc440spe_adma_driver = { 4915static struct platform_driver ppc440spe_adma_driver = {
4916 .probe = ppc440spe_adma_probe, 4916 .probe = ppc440spe_adma_probe,
4917 .remove = __devexit_p(ppc440spe_adma_remove), 4917 .remove = ppc440spe_adma_remove,
4918 .driver = { 4918 .driver = {
4919 .name = "PPC440SP(E)-ADMA", 4919 .name = "PPC440SP(E)-ADMA",
4920 .owner = THIS_MODULE, 4920 .owner = THIS_MODULE,
diff --git a/drivers/dma/sa11x0-dma.c b/drivers/dma/sa11x0-dma.c
index b893159c1ecb..1255d9b2c3dd 100644
--- a/drivers/dma/sa11x0-dma.c
+++ b/drivers/dma/sa11x0-dma.c
@@ -1072,7 +1072,7 @@ static struct platform_driver sa11x0_dma_driver = {
1072 .pm = &sa11x0_dma_pm_ops, 1072 .pm = &sa11x0_dma_pm_ops,
1073 }, 1073 },
1074 .probe = sa11x0_dma_probe, 1074 .probe = sa11x0_dma_probe,
1075 .remove = __devexit_p(sa11x0_dma_remove), 1075 .remove = sa11x0_dma_remove,
1076}; 1076};
1077 1077
1078bool sa11x0_dma_filter_fn(struct dma_chan *chan, void *param) 1078bool sa11x0_dma_filter_fn(struct dma_chan *chan, void *param)
diff --git a/drivers/dma/sh/shdma.c b/drivers/dma/sh/shdma.c
index f41bcc5267fd..7dcf4e073186 100644
--- a/drivers/dma/sh/shdma.c
+++ b/drivers/dma/sh/shdma.c
@@ -926,7 +926,7 @@ static struct platform_driver sh_dmae_driver = {
926 .pm = &sh_dmae_pm, 926 .pm = &sh_dmae_pm,
927 .name = SH_DMAE_DRV_NAME, 927 .name = SH_DMAE_DRV_NAME,
928 }, 928 },
929 .remove = __devexit_p(sh_dmae_remove), 929 .remove = sh_dmae_remove,
930 .shutdown = sh_dmae_shutdown, 930 .shutdown = sh_dmae_shutdown,
931}; 931};
932 932
diff --git a/drivers/dma/sirf-dma.c b/drivers/dma/sirf-dma.c
index d451caace806..62d42c9e16b9 100644
--- a/drivers/dma/sirf-dma.c
+++ b/drivers/dma/sirf-dma.c
@@ -673,7 +673,7 @@ static struct of_device_id sirfsoc_dma_match[] = {
673 673
674static struct platform_driver sirfsoc_dma_driver = { 674static struct platform_driver sirfsoc_dma_driver = {
675 .probe = sirfsoc_dma_probe, 675 .probe = sirfsoc_dma_probe,
676 .remove = __devexit_p(sirfsoc_dma_remove), 676 .remove = sirfsoc_dma_remove,
677 .driver = { 677 .driver = {
678 .name = DRV_NAME, 678 .name = DRV_NAME,
679 .owner = THIS_MODULE, 679 .owner = THIS_MODULE,
diff --git a/drivers/dma/tegra20-apb-dma.c b/drivers/dma/tegra20-apb-dma.c
index 528c62dd4b00..655c4348e468 100644
--- a/drivers/dma/tegra20-apb-dma.c
+++ b/drivers/dma/tegra20-apb-dma.c
@@ -1418,7 +1418,7 @@ static struct platform_driver tegra_dmac_driver = {
1418 .of_match_table = of_match_ptr(tegra_dma_of_match), 1418 .of_match_table = of_match_ptr(tegra_dma_of_match),
1419 }, 1419 },
1420 .probe = tegra_dma_probe, 1420 .probe = tegra_dma_probe,
1421 .remove = __devexit_p(tegra_dma_remove), 1421 .remove = tegra_dma_remove,
1422}; 1422};
1423 1423
1424module_platform_driver(tegra_dmac_driver); 1424module_platform_driver(tegra_dmac_driver);