diff options
author | Tilman Schmidt <tilman@imap.cc> | 2009-10-06 08:19:01 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-10-07 01:21:07 -0400 |
commit | 1cec9727fbfd7baff2034796154be1a0297bcedd (patch) | |
tree | 6e396500c1e91aff545bd5dcd8711608a5abedd8 /drivers/isdn/gigaset/isocdata.c | |
parent | cd7f50e25156711f16ce253c49c91adc4368849c (diff) |
gigaset: add kerneldoc comments
Add kerneldoc comments to some functions in the Gigaset driver.
Impact: documentation
Signed-off-by: Tilman Schmidt <tilman@imap.cc>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/isdn/gigaset/isocdata.c')
-rw-r--r-- | drivers/isdn/gigaset/isocdata.c | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/drivers/isdn/gigaset/isocdata.c b/drivers/isdn/gigaset/isocdata.c index 7fd32f07fb47..9f3ef7b4248c 100644 --- a/drivers/isdn/gigaset/isocdata.c +++ b/drivers/isdn/gigaset/isocdata.c | |||
@@ -976,16 +976,17 @@ void gigaset_isoc_input(struct inbuf_t *inbuf) | |||
976 | 976 | ||
977 | /* == data output ========================================================== */ | 977 | /* == data output ========================================================== */ |
978 | 978 | ||
979 | /* gigaset_send_skb | 979 | /** |
980 | * called by common.c to queue an skb for sending | 980 | * gigaset_isoc_send_skb() - queue an skb for sending |
981 | * and start transmission if necessary | 981 | * @bcs: B channel descriptor structure. |
982 | * parameters: | 982 | * @skb: data to send. |
983 | * B Channel control structure | 983 | * |
984 | * skb | 984 | * Called by i4l.c to queue an skb for sending, and start transmission if |
985 | * return value: | 985 | * necessary. |
986 | * number of bytes accepted for sending | 986 | * |
987 | * (skb->len if ok, 0 if out of buffer space) | 987 | * Return value: |
988 | * or error code (< 0, eg. -EINVAL) | 988 | * number of bytes accepted for sending (skb->len) if ok, |
989 | * error code < 0 (eg. -ENODEV) on error | ||
989 | */ | 990 | */ |
990 | int gigaset_isoc_send_skb(struct bc_state *bcs, struct sk_buff *skb) | 991 | int gigaset_isoc_send_skb(struct bc_state *bcs, struct sk_buff *skb) |
991 | { | 992 | { |