aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMatthias Urlichs <smurf@smurf.noris.de>2008-08-15 18:09:24 -0400
committerKarsten Keil <kkeil@suse.de>2009-01-09 16:44:28 -0500
commitb36b654a7e82308cea063cdf909a7f246105c2a3 (patch)
tree8c6fd2651a307a1b67549801796e2fdf8bc7991e /include
parent808a14a1583ca3790bf0a9c20c7d4cbac212c775 (diff)
mISDN: Create /sys/class/mISDN
Create /sys/class/mISDN and implement functions to handle device renames. Signed-Off-By: Matthias Urlichs <matthias@urlichs.de> Signed-off-by: Karsten Keil <kkeil@suse.de>
Diffstat (limited to 'include')
-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);