diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2012-07-13 08:09:33 (GMT) |
---|---|---|
committer | Vinod Koul <vinod.koul@linux.intel.com> | 2012-07-16 06:33:07 (GMT) |
commit | f8609c2b528331c38293bb8082a91701256d3fc1 (patch) | |
tree | 912e86414141bd89a4167fe86d2b4322b5971860 /drivers/dma/dw_dmac.c | |
parent | 93aad1bcc591c5138a5858a9cde637002e09ab4e (diff) | |
download | linux-f8609c2b528331c38293bb8082a91701256d3fc1.tar.xz |
dw_dmac: use 'u32' for LLI structure members, not dma_addr_t
Use 'u32' for the LLI structure members, which are defined by hardware to be
32-bit. dma_addr_t is much more vague about its actual size.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Vinod Koul <vinod.koul@linux.intel.com>
Diffstat (limited to 'drivers/dma/dw_dmac.c')
-rw-r--r-- | drivers/dma/dw_dmac.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/dma/dw_dmac.c b/drivers/dma/dw_dmac.c index 60063498..57beb5c 100644 --- a/drivers/dma/dw_dmac.c +++ b/drivers/dma/dw_dmac.c @@ -414,11 +414,8 @@ static void dwc_scan_descriptors(struct dw_dma *dw, struct dw_dma_chan *dwc) static inline void dwc_dump_lli(struct dw_dma_chan *dwc, struct dw_lli *lli) { dev_printk(KERN_CRIT, chan2dev(&dwc->chan), - " desc: s0x%llx d0x%llx l0x%llx c0x%x:%x\n", - (unsigned long long)lli->sar, - (unsigned long long)lli->dar, - (unsigned long long)lli->llp, - lli->ctlhi, lli->ctllo); + " desc: s0x%x d0x%x l0x%x c0x%x:%x\n", + lli->sar, lli->dar, lli->llp, lli->ctlhi, lli->ctllo); } static void dwc_handle_error(struct dw_dma *dw, struct dw_dma_chan *dwc) |