Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 35649
b: refs/heads/master
c: 53e62d3
h: refs/heads/master
i:
  35647: 2d9c780
v: v3
  • Loading branch information
Ralf Baechle authored and Linus Torvalds committed Sep 26, 2006
1 parent 8823036 commit bd75770
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: cf134483b2cd657039b305777215c531a1009947
refs/heads/master: 53e62d3aaa60590d4a69b4e07c29f448b5151047
10 changes: 6 additions & 4 deletions trunk/arch/mips/au1000/common/dbdma.c
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ EXPORT_SYMBOL(au1xxx_ddma_add_device);
*/
u32
au1xxx_dbdma_chan_alloc(u32 srcid, u32 destid,
void (*callback)(int, void *, struct pt_regs *), void *callparam)
void (*callback)(int, void *), void *callparam)
{
unsigned long flags;
u32 used, chan, rv;
Expand All @@ -248,8 +248,10 @@ au1xxx_dbdma_chan_alloc(u32 srcid, u32 destid,
au1xxx_dbdma_init();
dbdma_initialized = 1;

if ((stp = find_dbdev_id(srcid)) == NULL) return 0;
if ((dtp = find_dbdev_id(destid)) == NULL) return 0;
if ((stp = find_dbdev_id(srcid)) == NULL)
return 0;
if ((dtp = find_dbdev_id(destid)) == NULL)
return 0;

used = 0;
rv = 0;
Expand Down Expand Up @@ -869,7 +871,7 @@ dbdma_interrupt(int irq, void *dev_id, struct pt_regs *regs)
au_sync();

if (ctp->chan_callback)
(ctp->chan_callback)(irq, ctp->chan_callparam, regs);
(ctp->chan_callback)(irq, ctp->chan_callparam);

ctp->cur_ptr = phys_to_virt(DSCR_GET_NXTPTR(dp->dscr_nxtptr));
return IRQ_RETVAL(1);
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/ide/mips/au1xxx-ide.c
Original file line number Diff line number Diff line change
Expand Up @@ -476,13 +476,13 @@ static int auide_dma_lostirq(ide_drive_t *drive)
return 0;
}

static void auide_ddma_tx_callback(int irq, void *param, struct pt_regs *regs)
static void auide_ddma_tx_callback(int irq, void *param)
{
_auide_hwif *ahwif = (_auide_hwif*)param;
ahwif->drive->waiting_for_dma = 0;
}

static void auide_ddma_rx_callback(int irq, void *param, struct pt_regs *regs)
static void auide_ddma_rx_callback(int irq, void *param)
{
_auide_hwif *ahwif = (_auide_hwif*)param;
ahwif->drive->waiting_for_dma = 0;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/mmc/au1xmmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ static void au1xmmc_set_ios(struct mmc_host* mmc, struct mmc_ios* ios)
}
}

static void au1xmmc_dma_callback(int irq, void *dev_id, struct pt_regs *regs)
static void au1xmmc_dma_callback(int irq, void *dev_id)
{
struct au1xmmc_host *host = (struct au1xmmc_host *) dev_id;

Expand Down
6 changes: 3 additions & 3 deletions trunk/include/asm-mips/mach-au1x00/au1xxx_dbdma.h
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ typedef struct dbdma_chan_config {
au1x_ddma_desc_t *chan_desc_base;
au1x_ddma_desc_t *get_ptr, *put_ptr, *cur_ptr;
void *chan_callparam;
void (*chan_callback)(int, void *, struct pt_regs *);
void (*chan_callback)(int, void *);
} chan_tab_t;

#define DEV_FLAGS_INUSE (1 << 0)
Expand All @@ -334,8 +334,8 @@ typedef struct dbdma_chan_config {
* meaningful name. The 'callback' is called during dma completion
* interrupt.
*/
u32 au1xxx_dbdma_chan_alloc(u32 srcid, u32 destid,
void (*callback)(int, void *, struct pt_regs *), void *callparam);
extern u32 au1xxx_dbdma_chan_alloc(u32 srcid, u32 destid,
void (*callback)(int, void *), void *callparam);

#define DBDMA_MEM_CHAN DSCR_CMD0_ALWAYS

Expand Down
6 changes: 2 additions & 4 deletions trunk/sound/oss/au1550_ac97.c
Original file line number Diff line number Diff line change
Expand Up @@ -719,8 +719,7 @@ prog_dmabuf_dac(struct au1550_state *s)
}


static void
dac_dma_interrupt(int irq, void *dev_id, struct pt_regs *regs)
static void dac_dma_interrupt(int irq, void *dev_id)
{
struct au1550_state *s = (struct au1550_state *) dev_id;
struct dmabuf *db = &s->dma_dac;
Expand Down Expand Up @@ -754,8 +753,7 @@ dac_dma_interrupt(int irq, void *dev_id, struct pt_regs *regs)
}


static void
adc_dma_interrupt(int irq, void *dev_id, struct pt_regs *regs)
static void adc_dma_interrupt(int irq, void *dev_id)
{
struct au1550_state *s = (struct au1550_state *)dev_id;
struct dmabuf *dp = &s->dma_adc;
Expand Down

0 comments on commit bd75770

Please sign in to comment.