aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/isdn/hisax/hisax.h
diff options
context:
space:
mode:
authorJeff Garzik <jeff@garzik.org>2007-10-31 05:42:50 -0400
committerJeff Garzik <jgarzik@redhat.com>2008-04-20 19:10:17 -0400
commit896c6fa1e59dd17e1ac2877c25cab19bbb24e666 (patch)
treed3d2890ba76bb64e5bb13739960cadde943f9689 /drivers/isdn/hisax/hisax.h
parenta6f97b293b08877d945ea3f28926aa446dd7ca2e (diff)
[ISDN] minor irq handler cleanups
- reference irq number in CardState structure - remove now-unused 'intno' argument from rs_interrupt_elsa() - cs->irq_func() should be defined using standard irq_handler_t - add KERN_DEBUG to printk() where appropriate Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/isdn/hisax/hisax.h')
-rw-r--r--drivers/isdn/hisax/hisax.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/isdn/hisax/hisax.h b/drivers/isdn/hisax/hisax.h
index 34733c903df7..e8d429fda846 100644
--- a/drivers/isdn/hisax/hisax.h
+++ b/drivers/isdn/hisax/hisax.h
@@ -925,7 +925,7 @@ struct IsdnCardState {
925 int (*cardmsg) (struct IsdnCardState *, int, void *); 925 int (*cardmsg) (struct IsdnCardState *, int, void *);
926 void (*setstack_d) (struct PStack *, struct IsdnCardState *); 926 void (*setstack_d) (struct PStack *, struct IsdnCardState *);
927 void (*DC_Close) (struct IsdnCardState *); 927 void (*DC_Close) (struct IsdnCardState *);
928 int (*irq_func) (int, void *); 928 irq_handler_t irq_func;
929 int (*auxcmd) (struct IsdnCardState *, isdn_ctrl *); 929 int (*auxcmd) (struct IsdnCardState *, isdn_ctrl *);
930 struct Channel channel[2+MAX_WAITING_CALLS]; 930 struct Channel channel[2+MAX_WAITING_CALLS];
931 struct BCState bcs[2+MAX_WAITING_CALLS]; 931 struct BCState bcs[2+MAX_WAITING_CALLS];