diff options
Diffstat (limited to 'drivers/net/wireless/libertas/tx.c')
-rw-r--r-- | drivers/net/wireless/libertas/tx.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/drivers/net/wireless/libertas/tx.c b/drivers/net/wireless/libertas/tx.c index 8000ca6165d0..bbb95f88dc01 100644 --- a/drivers/net/wireless/libertas/tx.c +++ b/drivers/net/wireless/libertas/tx.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /** | 1 | /* |
2 | * This file contains the handling of TX in wlan driver. | 2 | * This file contains the handling of TX in wlan driver. |
3 | */ | 3 | */ |
4 | #include <linux/netdevice.h> | 4 | #include <linux/netdevice.h> |
5 | #include <linux/etherdevice.h> | 5 | #include <linux/etherdevice.h> |
6 | #include <linux/sched.h> | 6 | #include <linux/sched.h> |
@@ -13,11 +13,11 @@ | |||
13 | #include "dev.h" | 13 | #include "dev.h" |
14 | 14 | ||
15 | /** | 15 | /** |
16 | * @brief This function converts Tx/Rx rates from IEEE80211_RADIOTAP_RATE | 16 | * convert_radiotap_rate_to_mv - converts Tx/Rx rates from IEEE80211_RADIOTAP_RATE |
17 | * units (500 Kb/s) into Marvell WLAN format (see Table 8 in Section 3.2.1) | 17 | * units (500 Kb/s) into Marvell WLAN format (see Table 8 in Section 3.2.1) |
18 | * | 18 | * |
19 | * @param rate Input rate | 19 | * @rate: Input rate |
20 | * @return Output Rate (0 if invalid) | 20 | * returns: Output Rate (0 if invalid) |
21 | */ | 21 | */ |
22 | static u32 convert_radiotap_rate_to_mv(u8 rate) | 22 | static u32 convert_radiotap_rate_to_mv(u8 rate) |
23 | { | 23 | { |
@@ -51,12 +51,12 @@ static u32 convert_radiotap_rate_to_mv(u8 rate) | |||
51 | } | 51 | } |
52 | 52 | ||
53 | /** | 53 | /** |
54 | * @brief This function checks the conditions and sends packet to IF | 54 | * lbs_hard_start_xmit - checks the conditions and sends packet to IF |
55 | * layer if everything is ok. | 55 | * layer if everything is ok |
56 | * | 56 | * |
57 | * @param priv A pointer to struct lbs_private structure | 57 | * @skb: A pointer to skb which includes TX packet |
58 | * @param skb A pointer to skb which includes TX packet | 58 | * @dev: A pointer to the &struct net_device |
59 | * @return 0 or -1 | 59 | * returns: 0 or -1 |
60 | */ | 60 | */ |
61 | netdev_tx_t lbs_hard_start_xmit(struct sk_buff *skb, struct net_device *dev) | 61 | netdev_tx_t lbs_hard_start_xmit(struct sk_buff *skb, struct net_device *dev) |
62 | { | 62 | { |
@@ -168,13 +168,13 @@ netdev_tx_t lbs_hard_start_xmit(struct sk_buff *skb, struct net_device *dev) | |||
168 | } | 168 | } |
169 | 169 | ||
170 | /** | 170 | /** |
171 | * @brief This function sends to the host the last transmitted packet, | 171 | * lbs_send_tx_feedback - sends to the host the last transmitted packet, |
172 | * filling the radiotap headers with transmission information. | 172 | * filling the radiotap headers with transmission information. |
173 | * | 173 | * |
174 | * @param priv A pointer to struct lbs_private structure | 174 | * @priv: A pointer to &struct lbs_private structure |
175 | * @param status A 32 bit value containing transmission status. | 175 | * @try_count: A 32-bit value containing transmission retry status. |
176 | * | 176 | * |
177 | * @returns void | 177 | * returns: void |
178 | */ | 178 | */ |
179 | void lbs_send_tx_feedback(struct lbs_private *priv, u32 try_count) | 179 | void lbs_send_tx_feedback(struct lbs_private *priv, u32 try_count) |
180 | { | 180 | { |