aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mISDNif.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/mISDNif.h')
-rw-r--r--include/linux/mISDNif.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/linux/mISDNif.h b/include/linux/mISDNif.h
index 3f9988849f32..d4229aebf648 100644
--- a/include/linux/mISDNif.h
+++ b/include/linux/mISDNif.h
@@ -531,7 +531,8 @@ _queue_data(struct mISDNchannel *ch, u_int prim,
531 531
532/* global register/unregister functions */ 532/* global register/unregister functions */
533 533
534extern int mISDN_register_device(struct mISDNdevice *, char *name); 534extern int mISDN_register_device(struct mISDNdevice *,
535 struct device *parent, char *name);
535extern void mISDN_unregister_device(struct mISDNdevice *); 536extern void mISDN_unregister_device(struct mISDNdevice *);
536extern int mISDN_register_Bprotocol(struct Bprotocol *); 537extern int mISDN_register_Bprotocol(struct Bprotocol *);
537extern void mISDN_unregister_Bprotocol(struct Bprotocol *); 538extern void mISDN_unregister_Bprotocol(struct Bprotocol *);
@@ -539,6 +540,11 @@ extern struct mISDNclock *mISDN_register_clock(char *, int, clockctl_func_t *,
539 void *); 540 void *);
540extern void mISDN_unregister_clock(struct mISDNclock *); 541extern void mISDN_unregister_clock(struct mISDNclock *);
541 542
543static inline struct mISDNdevice *dev_to_mISDN(struct device *dev)
544{
545 return dev_get_drvdata(dev);
546}
547
542extern void set_channel_address(struct mISDNchannel *, u_int, u_int); 548extern void set_channel_address(struct mISDNchannel *, u_int, u_int);
543extern void mISDN_clock_update(struct mISDNclock *, int, struct timeval *); 549extern void mISDN_clock_update(struct mISDNclock *, int, struct timeval *);
544extern unsigned short mISDN_clock_get(void); 550extern unsigned short mISDN_clock_get(void);