The src/dstn_addr_widths in dma_slave_caps are 32bits which doesn't allow us to describe widths of larger size as src/dstn_addr_widths are expressed as BIT(). So extend the size of this to 64bits. Signed-off-by: Vinod Koul <vinod.koul@xxxxxxxxx> --- include/linux/dmaengine.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h index 8319101170fc..6803614dbf7c 100644 --- a/include/linux/dmaengine.h +++ b/include/linux/dmaengine.h @@ -420,8 +420,8 @@ enum dma_residue_granularity { * resubmitted multiple times */ struct dma_slave_caps { - u32 src_addr_widths; - u32 dst_addr_widths; + u64 src_addr_widths; + u64 dst_addr_widths; u32 directions; u32 max_burst; bool cmd_pause; -- 2.7.4 -- To unsubscribe from this list: send the line "unsubscribe dmaengine" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html