* [PATCH]: libertas_tf: Fix warning in lbtf_rx for stats struct
@ 2010-06-10 12:08 Prarit Bhargava
0 siblings, 0 replies; only message in thread
From: Prarit Bhargava @ 2010-06-10 12:08 UTC (permalink / raw)
To: linux-wireless, linville; +Cc: Prarit Bhargava
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 947 bytes --]
Fixes linux-2.6 warning:
drivers/net/wireless/libertas_tf/main.c: In function ‘lbtf_rx’:
drivers/net/wireless/libertas_tf/main.c:578: warning: ‘stats.antenna’ is used uninitialized in this function
drivers/net/wireless/libertas_tf/main.c:578: warning: ‘stats.mactime’ is used uninitialized in this function
stats struct needs to be set to 0 before use.
Signed-off-by: Prarit Bhargava <prarit@redhat.com>
diff --git a/drivers/net/wireless/libertas_tf/main.c b/drivers/net/wireless/libertas_tf/main.c
index 019431d..52d7c5c 100644
--- a/drivers/net/wireless/libertas_tf/main.c
+++ b/drivers/net/wireless/libertas_tf/main.c
@@ -488,7 +488,7 @@ int lbtf_rx(struct lbtf_private *priv, struct sk_buff *skb)
prxpd = (struct rxpd *) skb->data;
- stats.flag = 0;
+ memset(&stats, 0, sizeof(stats));
if (!(prxpd->status & cpu_to_le16(MRVDRV_RXPD_STATUS_OK)))
stats.flag |= RX_FLAG_FAILED_FCS_CRC;
stats.freq = priv->cur_freq;
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2010-06-10 12:08 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-10 12:08 [PATCH]: libertas_tf: Fix warning in lbtf_rx for stats struct Prarit Bhargava
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox