From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754624AbbILKMb (ORCPT ); Sat, 12 Sep 2015 06:12:31 -0400 Received: from mx1.polytechnique.org ([129.104.30.34]:55502 "EHLO mx1.polytechnique.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754345AbbILKM3 (ORCPT ); Sat, 12 Sep 2015 06:12:29 -0400 X-Greylist: delayed 330 seconds by postgrey-1.27 at vger.kernel.org; Sat, 12 Sep 2015 06:12:28 EDT From: Nicolas Iooss To: Johannes Berg , Emmanuel Grumbach , Intel Linux Wireless , Kalle Valo , Gregory Greenman , linux-wireless@vger.kernel.org Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Nicolas Iooss Subject: [PATCH] iwlwifi: mvm: fix tof.h header guard Date: Sat, 12 Sep 2015 12:04:51 +0200 Message-Id: <1442052291-2328-1-git-send-email-nicolas.iooss_linux@m4x.org> X-Mailer: git-send-email 2.5.1 X-AV-Checked: ClamAV using ClamSMTP at svoboda.polytechnique.org (Sat Sep 12 12:06:56 2015 +0200 (CEST)) X-Spam-Flag: No, tests=bogofilter, spamicity=0.000262, queueID=1FEC8140912EB Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit ce7929186a39 ("iwlwifi: mvm: add basic Time of Flight (802.11mc FTM) support") created drivers/net/wireless/iwlwifi/mvm/tof.h with a broken header guard: #ifndef __tof #define __tof_h__ ... #endif /* __tof_h__ */ Use __tof_h__ in the first line. Signed-off-by: Nicolas Iooss --- drivers/net/wireless/iwlwifi/mvm/tof.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/wireless/iwlwifi/mvm/tof.h b/drivers/net/wireless/iwlwifi/mvm/tof.h index 50ae8adaaa6e..9beebc33cb8d 100644 --- a/drivers/net/wireless/iwlwifi/mvm/tof.h +++ b/drivers/net/wireless/iwlwifi/mvm/tof.h @@ -60,7 +60,7 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * *****************************************************************************/ -#ifndef __tof +#ifndef __tof_h__ #define __tof_h__ #include "fw-api-tof.h" -- 2.5.1