Module Name:    src
Committed By:   phil
Date:           Tue Nov 19 19:17:48 UTC 2019

Modified Files:
        src/sys/net80211 [phil-wifi]: ieee80211_ratectl.c

Log Message:
Add a FreeBSD ifdef


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.4 -r1.1.2.5 src/sys/net80211/ieee80211_ratectl.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/net80211/ieee80211_ratectl.c
diff -u src/sys/net80211/ieee80211_ratectl.c:1.1.2.4 src/sys/net80211/ieee80211_ratectl.c:1.1.2.5
--- src/sys/net80211/ieee80211_ratectl.c:1.1.2.4	Mon Jun 10 22:09:46 2019
+++ src/sys/net80211/ieee80211_ratectl.c	Tue Nov 19 19:17:48 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: ieee80211_ratectl.c,v 1.1.2.4 2019/06/10 22:09:46 christos Exp $ */
+/*	$NetBSD: ieee80211_ratectl.c,v 1.1.2.5 2019/11/19 19:17:48 phil Exp $ */
 
 /*-
  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
@@ -29,12 +29,14 @@
 
 #include <sys/cdefs.h>
 #ifdef __NetBSD__
-__KERNEL_RCSID(0, "$NetBSD: ieee80211_ratectl.c,v 1.1.2.4 2019/06/10 22:09:46 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ieee80211_ratectl.c,v 1.1.2.5 2019/11/19 19:17:48 phil Exp $");
 #endif
 
 #ifdef _KERNEL_OPT
+#ifdef __FreeBSD__
 #include "opt-wlan.h"
 #endif
+#endif
 
 #include <sys/param.h>
 #include <sys/kernel.h>

Reply via email to