aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2012-10-30 06:56:26 -0400
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2012-11-20 09:58:57 -0500
commite39f6ec1f9c1d6a7011adf6d95d8d80bad0586b1 (patch)
tree77aeb721c8fe3c252d9d9adfaadcaae8511394b0 /drivers/dma
parent2ccc469cfecee291707dd50e5842cbf206bc17d7 (diff)
dma: mv_xor: rename mv_xor_platform_data to mv_xor_channel_data
mv_xor_platform_data used to be the platform_data structure associated to the 'mv_xor' driver. This driver no longer exists, and this data structure really contains the properties of each XOR channel part of a given XOR engine. Therefore 'struct mv_xor_channel_data' is a more appropriate name. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'drivers/dma')
-rw-r--r--drivers/dma/mv_xor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/mv_xor.c b/drivers/dma/mv_xor.c
index be3907bdef14..c7926e417281 100644
--- a/drivers/dma/mv_xor.c
+++ b/drivers/dma/mv_xor.c
@@ -1300,7 +1300,7 @@ static int mv_xor_shared_probe(struct platform_device *pdev)
1300 1300
1301 if (pdata && pdata->channels) { 1301 if (pdata && pdata->channels) {
1302 for (i = 0; i < MV_XOR_MAX_CHANNELS; i++) { 1302 for (i = 0; i < MV_XOR_MAX_CHANNELS; i++) {
1303 struct mv_xor_platform_data *cd; 1303 struct mv_xor_channel_data *cd;
1304 int irq; 1304 int irq;
1305 1305
1306 cd = &pdata->channels[i]; 1306 cd = &pdata->channels[i];