summaryrefslogtreecommitdiff
path: root/drivers/dma/edma.c
diff options
context:
space:
mode:
authorPeter Ujfalusi <peter.ujfalusi@ti.com>2015-10-16 10:18:02 +0300
committerVinod Koul <vinod.koul@intel.com>2015-10-27 10:22:44 +0900
commitd9c345d18a8df5a5427cca80d2b9d981468ef270 (patch)
treeba9c1320341a72afd42702515dab735fe8865f07 /drivers/dma/edma.c
parent34cf30111cfccd18e1ccf2456f72dff6d42bd853 (diff)
dmaengine: edma: Correct PaRAM access function names (_parm_ to _param_)
These inline functions are designed to modify parts of the PaRAM in eDMA. Change the names accordingly. Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/edma.c')
-rw-r--r--drivers/dma/edma.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/drivers/dma/edma.c b/drivers/dma/edma.c
index a64befecf477..051a7c4593d4 100644
--- a/drivers/dma/edma.c
+++ b/drivers/dma/edma.c
@@ -349,32 +349,32 @@ static inline void edma_shadow0_write_array(struct edma_cc *ecc, int offset,
edma_write(ecc, EDMA_SHADOW0 + offset + (i << 2), val);
}
-static inline unsigned int edma_parm_read(struct edma_cc *ecc, int offset,
- int param_no)
+static inline unsigned int edma_param_read(struct edma_cc *ecc, int offset,
+ int param_no)
{
return edma_read(ecc, EDMA_PARM + offset + (param_no << 5));
}
-static inline void edma_parm_write(struct edma_cc *ecc, int offset,
- int param_no, unsigned val)
+static inline void edma_param_write(struct edma_cc *ecc, int offset,
+ int param_no, unsigned val)
{
edma_write(ecc, EDMA_PARM + offset + (param_no << 5), val);
}
-static inline void edma_parm_modify(struct edma_cc *ecc, int offset,
- int param_no, unsigned and, unsigned or)
+static inline void edma_param_modify(struct edma_cc *ecc, int offset,
+ int param_no, unsigned and, unsigned or)
{
edma_modify(ecc, EDMA_PARM + offset + (param_no << 5), and, or);
}
-static inline void edma_parm_and(struct edma_cc *ecc, int offset, int param_no,
- unsigned and)
+static inline void edma_param_and(struct edma_cc *ecc, int offset, int param_no,
+ unsigned and)
{
edma_and(ecc, EDMA_PARM + offset + (param_no << 5), and);
}
-static inline void edma_parm_or(struct edma_cc *ecc, int offset, int param_no,
- unsigned or)
+static inline void edma_param_or(struct edma_cc *ecc, int offset, int param_no,
+ unsigned or)
{
edma_or(ecc, EDMA_PARM + offset + (param_no << 5), or);
}
@@ -594,8 +594,8 @@ static void edma_link(struct edma_cc *ecc, unsigned from, unsigned to)
if (from >= ecc->num_slots || to >= ecc->num_slots)
return;
- edma_parm_modify(ecc, PARM_LINK_BCNTRLD, from, 0xffff0000,
- PARM_OFFSET(to));
+ edma_param_modify(ecc, PARM_LINK_BCNTRLD, from, 0xffff0000,
+ PARM_OFFSET(to));
}
/**