Loading drivers/dma/edma.c +12 −12 Original line number Diff line number Diff line Loading @@ -349,31 +349,31 @@ 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, 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, 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, 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, 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, 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); Loading Loading @@ -594,7 +594,7 @@ 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, edma_param_modify(ecc, PARM_LINK_BCNTRLD, from, 0xffff0000, PARM_OFFSET(to)); } Loading Loading
drivers/dma/edma.c +12 −12 Original line number Diff line number Diff line Loading @@ -349,31 +349,31 @@ 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, 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, 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, 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, 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, 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); Loading Loading @@ -594,7 +594,7 @@ 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, edma_param_modify(ecc, PARM_LINK_BCNTRLD, from, 0xffff0000, PARM_OFFSET(to)); } Loading