Commit 46ee4566 authored by Tony Lindgren's avatar Tony Lindgren

musb_hdrc: Search and replace MGC_pfDmaProgramChannel with dma_program_channel

Search and replace MGC_pfDmaProgramChannel with dma_program_channel
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 01f8addb
...@@ -133,7 +133,7 @@ struct dma_channel { ...@@ -133,7 +133,7 @@ struct dma_channel {
* *
* Returns TRUE on success, else FALSE * Returns TRUE on success, else FALSE
*/ */
typedef int (*MGC_pfDmaProgramChannel) ( typedef int (*dma_program_channel) (
struct dma_channel *channel, struct dma_channel *channel,
u16 maxpacket, u16 maxpacket,
u8 mode, u8 mode,
...@@ -175,7 +175,7 @@ struct dma_controller { ...@@ -175,7 +175,7 @@ struct dma_controller {
struct dma_channel *(*channel_alloc)(struct dma_controller *, struct dma_channel *(*channel_alloc)(struct dma_controller *,
struct musb_hw_ep *, u8 is_tx); struct musb_hw_ep *, u8 is_tx);
void (*channel_release)(struct dma_channel *); void (*channel_release)(struct dma_channel *);
MGC_pfDmaProgramChannel channel_program; dma_program_channel channel_program;
int (*channel_abort)(struct dma_channel *); int (*channel_abort)(struct dma_channel *);
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment