Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 91637
b: refs/heads/master
c: 896c6fa
h: refs/heads/master
i:
  91635: 1ae52a2
v: v3
  • Loading branch information
Jeff Garzik authored and Jeff Garzik committed Apr 20, 2008
1 parent 4227ccf commit 1f20ba8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 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: a6f97b293b08877d945ea3f28926aa446dd7ca2e
refs/heads/master: 896c6fa1e59dd17e1ac2877c25cab19bbb24e666
4 changes: 2 additions & 2 deletions trunk/drivers/isdn/hisax/elsa.c
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ elsa_interrupt(int intno, void *dev_id)
val = serial_inp(cs, UART_IIR);
if (!(val & UART_IIR_NO_INT)) {
debugl1(cs,"IIR %02x", val);
rs_interrupt_elsa(intno, cs);
rs_interrupt_elsa(cs);
}
}
#endif
Expand Down Expand Up @@ -379,7 +379,7 @@ elsa_interrupt_ipac(int intno, void *dev_id)
val = serial_inp(cs, UART_IIR);
if (!(val & UART_IIR_NO_INT)) {
debugl1(cs,"IIR %02x", val);
rs_interrupt_elsa(intno, cs);
rs_interrupt_elsa(cs);
}
}
#endif
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/isdn/hisax/elsa_ser.c
Original file line number Diff line number Diff line change
Expand Up @@ -384,13 +384,13 @@ static inline void transmit_chars(struct IsdnCardState *cs, int *intr_done)
}


static void rs_interrupt_elsa(int irq, struct IsdnCardState *cs)
static void rs_interrupt_elsa(struct IsdnCardState *cs)
{
int status, iir, msr;
int pass_counter = 0;

#ifdef SERIAL_DEBUG_INTR
printk("rs_interrupt_single(%d)...", irq);
printk(KERN_DEBUG "rs_interrupt_single(%d)...", cs->irq);
#endif

do {
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/isdn/hisax/hisax.h
Original file line number Diff line number Diff line change
Expand Up @@ -925,7 +925,7 @@ struct IsdnCardState {
int (*cardmsg) (struct IsdnCardState *, int, void *);
void (*setstack_d) (struct PStack *, struct IsdnCardState *);
void (*DC_Close) (struct IsdnCardState *);
int (*irq_func) (int, void *);
irq_handler_t irq_func;
int (*auxcmd) (struct IsdnCardState *, isdn_ctrl *);
struct Channel channel[2+MAX_WAITING_CALLS];
struct BCState bcs[2+MAX_WAITING_CALLS];
Expand Down

0 comments on commit 1f20ba8

Please sign in to comment.