aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/iop-adma.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/dma/iop-adma.c')
-rw-r--r--drivers/dma/iop-adma.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/dma/iop-adma.c b/drivers/dma/iop-adma.c
index 79e3eba29702..9072e173b860 100644
--- a/drivers/dma/iop-adma.c
+++ b/drivers/dma/iop-adma.c
@@ -968,7 +968,7 @@ static void iop_adma_issue_pending(struct dma_chan *chan)
968 */ 968 */
969#define IOP_ADMA_TEST_SIZE 2000 969#define IOP_ADMA_TEST_SIZE 2000
970 970
971static int __devinit iop_adma_memcpy_self_test(struct iop_adma_device *device) 971static int iop_adma_memcpy_self_test(struct iop_adma_device *device)
972{ 972{
973 int i; 973 int i;
974 void *src, *dest; 974 void *src, *dest;
@@ -1042,7 +1042,7 @@ out:
1042} 1042}
1043 1043
1044#define IOP_ADMA_NUM_SRC_TEST 4 /* must be <= 15 */ 1044#define IOP_ADMA_NUM_SRC_TEST 4 /* must be <= 15 */
1045static int __devinit 1045static int
1046iop_adma_xor_val_self_test(struct iop_adma_device *device) 1046iop_adma_xor_val_self_test(struct iop_adma_device *device)
1047{ 1047{
1048 int i, src_idx; 1048 int i, src_idx;
@@ -1243,7 +1243,7 @@ out:
1243} 1243}
1244 1244
1245#ifdef CONFIG_RAID6_PQ 1245#ifdef CONFIG_RAID6_PQ
1246static int __devinit 1246static int
1247iop_adma_pq_zero_sum_self_test(struct iop_adma_device *device) 1247iop_adma_pq_zero_sum_self_test(struct iop_adma_device *device)
1248{ 1248{
1249 /* combined sources, software pq results, and extra hw pq results */ 1249 /* combined sources, software pq results, and extra hw pq results */
@@ -1429,7 +1429,7 @@ static int __devexit iop_adma_remove(struct platform_device *dev)
1429 return 0; 1429 return 0;
1430} 1430}
1431 1431
1432static int __devinit iop_adma_probe(struct platform_device *pdev) 1432static int iop_adma_probe(struct platform_device *pdev)
1433{ 1433{
1434 struct resource *res; 1434 struct resource *res;
1435 int ret = 0, i; 1435 int ret = 0, i;
@@ -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",