diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2012-07-10 06:55:09 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-07-11 02:13:45 -0400 |
commit | 2c53040f018b6c36a46eec75b9b937aaa5f78e6d (patch) | |
tree | f77d987c380f78daf40838688a5f49bb4ab065ee /net/llc | |
parent | a55b138b1da3d25c04f66f8df03d659dfd46c950 (diff) |
net: Fix (nearly-)kernel-doc comments for various functions
Fix incorrect start markers, wrapped summary lines, missing section
breaks, incorrect separators, and some name mismatches.
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/llc')
-rw-r--r-- | net/llc/af_llc.c | 2 | ||||
-rw-r--r-- | net/llc/llc_station.c | 16 |
2 files changed, 9 insertions, 9 deletions
diff --git a/net/llc/af_llc.c b/net/llc/af_llc.c index fe5453c3e719..f6fe4d400502 100644 --- a/net/llc/af_llc.c +++ b/net/llc/af_llc.c | |||
@@ -1024,7 +1024,7 @@ static int llc_ui_ioctl(struct socket *sock, unsigned int cmd, | |||
1024 | * @sock: Socket to set options on. | 1024 | * @sock: Socket to set options on. |
1025 | * @level: Socket level user is requesting operations on. | 1025 | * @level: Socket level user is requesting operations on. |
1026 | * @optname: Operation name. | 1026 | * @optname: Operation name. |
1027 | * @optval User provided operation data. | 1027 | * @optval: User provided operation data. |
1028 | * @optlen: Length of optval. | 1028 | * @optlen: Length of optval. |
1029 | * | 1029 | * |
1030 | * Set various connection specific parameters. | 1030 | * Set various connection specific parameters. |
diff --git a/net/llc/llc_station.c b/net/llc/llc_station.c index cf4aea3ba30f..39a8d8924b9c 100644 --- a/net/llc/llc_station.c +++ b/net/llc/llc_station.c | |||
@@ -30,12 +30,12 @@ | |||
30 | * | 30 | * |
31 | * SAP and connection resource manager, one per adapter. | 31 | * SAP and connection resource manager, one per adapter. |
32 | * | 32 | * |
33 | * @state - state of station | 33 | * @state: state of station |
34 | * @xid_r_count - XID response PDU counter | 34 | * @xid_r_count: XID response PDU counter |
35 | * @mac_sa - MAC source address | 35 | * @mac_sa: MAC source address |
36 | * @sap_list - list of related SAPs | 36 | * @sap_list: list of related SAPs |
37 | * @ev_q - events entering state mach. | 37 | * @ev_q: events entering state mach. |
38 | * @mac_pdu_q - PDUs ready to send to MAC | 38 | * @mac_pdu_q: PDUs ready to send to MAC |
39 | */ | 39 | */ |
40 | struct llc_station { | 40 | struct llc_station { |
41 | u8 state; | 41 | u8 state; |
@@ -646,7 +646,7 @@ static void llc_station_service_events(void) | |||
646 | } | 646 | } |
647 | 647 | ||
648 | /** | 648 | /** |
649 | * llc_station_state_process: queue event and try to process queue. | 649 | * llc_station_state_process - queue event and try to process queue. |
650 | * @skb: Address of the event | 650 | * @skb: Address of the event |
651 | * | 651 | * |
652 | * Queues an event (on the station event queue) for handling by the | 652 | * Queues an event (on the station event queue) for handling by the |
@@ -672,7 +672,7 @@ static void llc_station_ack_tmr_cb(unsigned long timeout_data) | |||
672 | } | 672 | } |
673 | } | 673 | } |
674 | 674 | ||
675 | /* | 675 | /** |
676 | * llc_station_rcv - send received pdu to the station state machine | 676 | * llc_station_rcv - send received pdu to the station state machine |
677 | * @skb: received frame. | 677 | * @skb: received frame. |
678 | * | 678 | * |