Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bb743609 authored by Nicolas Iooss's avatar Nicolas Iooss Committed by Luca Coelho
Browse files

iwlwifi: mvm: fix tof.h header guard



Commit ce792918 ("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: default avatarNicolas Iooss <nicolas.iooss_linux@m4x.org>
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
Signed-off-by: default avatarLuca Coelho <luciano.coelho@intel.com>
parent f82c8339
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -60,7 +60,7 @@
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 *
 *****************************************************************************/
 *****************************************************************************/
#ifndef __tof
#ifndef __tof_h__
#define __tof_h__
#define __tof_h__


#include "fw-api-tof.h"
#include "fw-api-tof.h"