With the change in dma channels private data information, the pl330 channel filter function is modified to look for a simple u8 value instead of the now unused 'struct dma_pl330_peri' value. Signed-off-by: Thomas Abraham <thomas.abraham@xxxxxxxxxx> --- arch/arm/plat-samsung/dma-ops.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/plat-samsung/dma-ops.c b/arch/arm/plat-samsung/dma-ops.c index 6e3d9ab..4f1430b 100644 --- a/arch/arm/plat-samsung/dma-ops.c +++ b/arch/arm/plat-samsung/dma-ops.c @@ -19,8 +19,8 @@ static inline bool pl330_filter(struct dma_chan *chan, void *param) { - struct dma_pl330_peri *peri = chan->private; - return peri->peri_id == (unsigned)param; + u8 *peri_id = chan->private; + return *peri_id == (unsigned)param; } static unsigned samsung_dmadev_request(enum dma_ch dma_ch, -- 1.6.6.rc2 -- To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html