mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-18 06:50:08 +00:00
Blackfin arch: drop custom dma_interrupt_t and just use irq_handler_t
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com> Signed-off-by: Bryan Wu <cooloney@kernel.org>
This commit is contained in:
parent
259fea42e6
commit
68532bdac3
@ -110,8 +110,6 @@ struct dma_register {
|
||||
|
||||
};
|
||||
|
||||
typedef irqreturn_t(*dma_interrupt_t) (int irq, void *dev_id);
|
||||
|
||||
struct dma_channel {
|
||||
struct mutex dmalock;
|
||||
const char *device_id;
|
||||
@ -120,7 +118,7 @@ struct dma_channel {
|
||||
struct dmasg *sg; /* large mode descriptor */
|
||||
unsigned int ctrl_num; /* controller number */
|
||||
unsigned int irq;
|
||||
dma_interrupt_t irq_callback;
|
||||
irq_handler_t irq_callback;
|
||||
void *data;
|
||||
unsigned int dma_enable_flag;
|
||||
unsigned int loopback_flag;
|
||||
@ -171,7 +169,7 @@ int dma_channel_active(unsigned int channel); /* check if a channel is in use */
|
||||
void disable_dma(unsigned int channel);
|
||||
void enable_dma(unsigned int channel);
|
||||
int request_dma(unsigned int channel, const char *device_id);
|
||||
int set_dma_callback(unsigned int channel, dma_interrupt_t callback,
|
||||
int set_dma_callback(unsigned int channel, irq_handler_t callback,
|
||||
void *data);
|
||||
void dma_disable_irq(unsigned int channel);
|
||||
void dma_enable_irq(unsigned int channel);
|
||||
|
@ -151,7 +151,7 @@ int request_dma(unsigned int channel, const char *device_id)
|
||||
}
|
||||
EXPORT_SYMBOL(request_dma);
|
||||
|
||||
int set_dma_callback(unsigned int channel, dma_interrupt_t callback, void *data)
|
||||
int set_dma_callback(unsigned int channel, irq_handler_t callback, void *data)
|
||||
{
|
||||
BUG_ON(!(dma_ch[channel].chan_status != DMA_CHANNEL_FREE
|
||||
&& channel < MAX_DMA_CHANNELS));
|
||||
|
Loading…
Reference in New Issue
Block a user