diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-02-12 03:53:16 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-12 12:48:34 -0500 |
commit | 010046d0c805ac3bfab1740f4a056af70b84ea46 (patch) | |
tree | 70e621b0caaa455aa5b61a6d815bae77295727cf /drivers/isdn/pcbit/pcbit.h | |
parent | 390414badebe45a2f556a04ece1fd99191aa6397 (diff) |
[PATCH] drivers/isdn/pcbit/: proper prototypes
Add correct prototypes in header files for global functions and variables.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Cc: Karsten Keil <kkeil@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/isdn/pcbit/pcbit.h')
-rw-r--r-- | drivers/isdn/pcbit/pcbit.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/isdn/pcbit/pcbit.h b/drivers/isdn/pcbit/pcbit.h index 19c18e88ff1..d76fffc88b8 100644 --- a/drivers/isdn/pcbit/pcbit.h +++ b/drivers/isdn/pcbit/pcbit.h | |||
@@ -166,6 +166,12 @@ struct pcbit_ioctl { | |||
166 | #define L2_RUNNING 5 | 166 | #define L2_RUNNING 5 |
167 | #define L2_ERROR 6 | 167 | #define L2_ERROR 6 |
168 | 168 | ||
169 | extern void pcbit_deliver(struct work_struct *work); | 169 | void pcbit_deliver(struct work_struct *work); |
170 | int pcbit_init_dev(int board, int mem_base, int irq); | ||
171 | void pcbit_terminate(int board); | ||
172 | void pcbit_l3_receive(struct pcbit_dev * dev, ulong msg, struct sk_buff * skb, | ||
173 | ushort hdr_len, ushort refnum); | ||
174 | void pcbit_state_change(struct pcbit_dev * dev, struct pcbit_chan * chan, | ||
175 | unsigned short i, unsigned short ev, unsigned short f); | ||
170 | 176 | ||
171 | #endif | 177 | #endif |