aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/mv_xor.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/dma/mv_xor.c')
-rw-r--r--drivers/dma/mv_xor.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/dma/mv_xor.c b/drivers/dma/mv_xor.c
index e362e2b80efb..d12ad00da4cb 100644
--- a/drivers/dma/mv_xor.c
+++ b/drivers/dma/mv_xor.c
@@ -901,7 +901,7 @@ static void mv_xor_issue_pending(struct dma_chan *chan)
901 */ 901 */
902#define MV_XOR_TEST_SIZE 2000 902#define MV_XOR_TEST_SIZE 2000
903 903
904static int __devinit mv_xor_memcpy_self_test(struct mv_xor_device *device) 904static int mv_xor_memcpy_self_test(struct mv_xor_device *device)
905{ 905{
906 int i; 906 int i;
907 void *src, *dest; 907 void *src, *dest;
@@ -975,7 +975,7 @@ out:
975} 975}
976 976
977#define MV_XOR_NUM_SRC_TEST 4 /* must be <= 15 */ 977#define MV_XOR_NUM_SRC_TEST 4 /* must be <= 15 */
978static int __devinit 978static int
979mv_xor_xor_self_test(struct mv_xor_device *device) 979mv_xor_xor_self_test(struct mv_xor_device *device)
980{ 980{
981 int i, src_idx; 981 int i, src_idx;
@@ -1100,7 +1100,7 @@ static int __devexit mv_xor_remove(struct platform_device *dev)
1100 return 0; 1100 return 0;
1101} 1101}
1102 1102
1103static int __devinit mv_xor_probe(struct platform_device *pdev) 1103static int mv_xor_probe(struct platform_device *pdev)
1104{ 1104{
1105 int ret = 0; 1105 int ret = 0;
1106 int irq; 1106 int irq;
@@ -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,