From: Roland Stigge Date: Thu, 12 Jul 2012 12:01:04 +0000 (+0200) Subject: ARM: LPC32xx: Adjust to pl08x DMA interface changes X-Git-Tag: upstream/snapshot3+hdmi~7018^2^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8ba85f8bffdfbac98dac8630406f7d020103db70;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git ARM: LPC32xx: Adjust to pl08x DMA interface changes This patch adjusts the LPC32xx platform support to the new pl08x DMA interface, fixing the compile error resulting from changed pl08x structures. Signed-off-by: Roland Stigge --- diff --git a/arch/arm/mach-lpc32xx/phy3250.c b/arch/arm/mach-lpc32xx/phy3250.c index 8625237..b07dcc9 100644 --- a/arch/arm/mach-lpc32xx/phy3250.c +++ b/arch/arm/mach-lpc32xx/phy3250.c @@ -186,13 +186,12 @@ static struct pl08x_channel_data pl08x_slave_channels[] = { }, }; -/* NOTE: These will change, according to RMK */ -static int pl08x_get_signal(struct pl08x_dma_chan *ch) +static int pl08x_get_signal(const struct pl08x_channel_data *cd) { - return ch->cd->min_signal; + return cd->min_signal; } -static void pl08x_put_signal(struct pl08x_dma_chan *ch) +static void pl08x_put_signal(const struct pl08x_channel_data *cd, int ch) { }