From mboxrd@z Thu Jan 1 00:00:00 1970 From: Larry Finger Subject: Re: [PATCH] net: mac80211: fix compilation warning Date: Sat, 05 Mar 2011 10:30:05 -0600 Message-ID: <4D72650D.8070503@lwfinger.net> References: <1299108754-5492-1-git-send-email-bookjovi@gmail.com> <1299328260.4277.92.camel@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: Ben Hutchings , "John W. Linville" , Johannes Berg , "David S. Miller" , "open list:NETWORKING [WIREL..." , "open list:NETWORKING [GENERAL]" , open list To: Jovi Zhang Return-path: In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On 03/05/2011 07:52 AM, Jovi Zhang wrote: > On Sat, Mar 5, 2011 at 8:31 PM, Ben Hutchings wrote: >> On Wed, 2011-03-02 at 18:32 -0500, bookjovi@gmail.com wrote: >>> From: Jovi Zhang >>> >>> this commit fix compilation warning as following: >>> net/mac80211/tx.c:1753: warning: unused variable mppath >> [...] >> >> You clearly didn't try building this with CONFIG_MAC80211_MESH enabled. >> > Sorry, indeed, maybe should be like this: > > +#ifdef CONFIG_MAC80211_MESH > struct mesh_path *mppath = NULL; > +#endif Linville likes "struct mesh_path *mppath __maybe_unused = NULL;" over the ifdef form. Larry