mirror of https://gitee.com/openkylin/linux.git
iwlwifi: mvm: fix tof.h header guard
Commit ce7929186a
("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 <nicolas.iooss_linux@m4x.org>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
This commit is contained in:
parent
f82c83397b
commit
bb74360937
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue