diff options
author | Roland Stigge <stigge@antcom.de> | 2012-07-12 08:01:04 -0400 |
---|---|---|
committer | Roland Stigge <stigge@antcom.de> | 2012-07-12 08:25:37 -0400 |
commit | 8ba85f8bffdfbac98dac8630406f7d020103db70 (patch) | |
tree | c5f8f40baaa3f3bbb8d76bfcc5287d854cd4e843 /arch/arm/mach-lpc32xx | |
parent | dcdd1339a3cda33f216628142eea78f3d41b47fe (diff) |
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 <stigge@antcom.de>
Diffstat (limited to 'arch/arm/mach-lpc32xx')
-rw-r--r-- | arch/arm/mach-lpc32xx/phy3250.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/arm/mach-lpc32xx/phy3250.c b/arch/arm/mach-lpc32xx/phy3250.c index 8625237ce656..b07dcc90829d 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[] = { | |||
186 | }, | 186 | }, |
187 | }; | 187 | }; |
188 | 188 | ||
189 | /* NOTE: These will change, according to RMK */ | 189 | static int pl08x_get_signal(const struct pl08x_channel_data *cd) |
190 | static int pl08x_get_signal(struct pl08x_dma_chan *ch) | ||
191 | { | 190 | { |
192 | return ch->cd->min_signal; | 191 | return cd->min_signal; |
193 | } | 192 | } |
194 | 193 | ||
195 | static void pl08x_put_signal(struct pl08x_dma_chan *ch) | 194 | static void pl08x_put_signal(const struct pl08x_channel_data *cd, int ch) |
196 | { | 195 | { |
197 | } | 196 | } |
198 | 197 | ||