Message ID | c95f816da2d5c6789004e063e1b7adc44695718e.1458262312.git.julian.calaby@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Delegated to: | Kalle Valo |
Headers | show |
> In rsi_send_data_pkt(), the following variables are assigned to > before they're used: Thanks for your interest in this update suggestion. How do you think about to add the function name also to such a mail subject so that the potential for confusion with an other change can be eventually reduced around the source file "rsi_91x_pkt.c"? Regards, Markus -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Hi Markus, On Sat, Mar 19, 2016 at 11:27 PM, SF Markus Elfring <elfring@users.sourceforge.net> wrote: >> In rsi_send_data_pkt(), the following variables are assigned to >> before they're used: > > Thanks for your interest in this update suggestion. > How do you think about to add the function name also to such > a mail subject so that the potential for confusion with an other > change can be eventually reduced around the source file "rsi_91x_pkt.c"? I don't think it really matters, they're both doing the same thing. Thanks,
diff --git a/drivers/net/wireless/rsi/rsi_91x_pkt.c b/drivers/net/wireless/rsi/rsi_91x_pkt.c index 571eaba..4322df1 100644 --- a/drivers/net/wireless/rsi/rsi_91x_pkt.c +++ b/drivers/net/wireless/rsi/rsi_91x_pkt.c @@ -27,15 +27,15 @@ int rsi_send_data_pkt(struct rsi_common *common, struct sk_buff *skb) { struct rsi_hw *adapter = common->priv; - struct ieee80211_hdr *tmp_hdr = NULL; + struct ieee80211_hdr *tmp_hdr; struct ieee80211_tx_info *info; struct skb_info *tx_params; - struct ieee80211_bss_conf *bss = NULL; + struct ieee80211_bss_conf *bss; int status = -EINVAL; u8 ieee80211_size = MIN_802_11_HDR_LEN; - u8 extnd_size = 0; + u8 extnd_size; __le16 *frame_desc; - u16 seq_num = 0; + u16 seq_num; info = IEEE80211_SKB_CB(skb); bss = &info->control.vif->bss_conf;