From: Christoph Fritz Date: Wed, 16 Jun 2010 14:37:34 +0000 (+0200) Subject: mac80211: fix warn, enum may be used uninitialized X-Git-Tag: v3.0~4197^2~1^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=021570e55b7152843376b9d9f60624e3e05ac054;p=platform%2Fkernel%2Flinux-amlogic.git mac80211: fix warn, enum may be used uninitialized regression introduced by b8d92c9c141ee3dc9b3537b1f0ffb4a54ea8d9b2 In function ‘ieee80211_work_rx_queued_mgmt’: warning: ‘rma’ may be used uninitialized in this function this re-adds default value WORK_ACT_NONE back to rma Signed-off-by: Christoph Fritz Signed-off-by: John W. Linville --- diff --git a/net/mac80211/work.c b/net/mac80211/work.c index be3d4a69..b025dc7 100644 --- a/net/mac80211/work.c +++ b/net/mac80211/work.c @@ -715,7 +715,7 @@ static void ieee80211_work_rx_queued_mgmt(struct ieee80211_local *local, struct ieee80211_rx_status *rx_status; struct ieee80211_mgmt *mgmt; struct ieee80211_work *wk; - enum work_action rma; + enum work_action rma = WORK_ACT_NONE; u16 fc; rx_status = (struct ieee80211_rx_status *) skb->cb;