Author: adrian
Date: Sun Nov 27 18:34:29 2016
New Revision: 309215
URL: https://svnweb.freebsd.org/changeset/base/309215

Log:
  [ath] Begin to lay the groundwork for btcoex related ioctl controls.

Modified:
  head/sys/dev/ath/if_ath_ioctl.c
  head/sys/dev/ath/if_athioctl.h

Modified: head/sys/dev/ath/if_ath_ioctl.c
==============================================================================
--- head/sys/dev/ath/if_ath_ioctl.c     Sun Nov 27 18:06:03 2016        
(r309214)
+++ head/sys/dev/ath/if_ath_ioctl.c     Sun Nov 27 18:34:29 2016        
(r309215)
@@ -296,6 +296,8 @@ ath_ioctl(struct ieee80211com *ic, u_lon
                return (ath_ioctl_spectral(sc, data));
        case SIOCGATHNODERATESTATS:
                return (ath_ioctl_ratestats(sc, data));
+       case SIOCGATHBTCOEX:
+               return (ath_btcoex_ioctl(sc, data));
        default:
                /*
                 * This signals the net80211 layer that we didn't handle this

Modified: head/sys/dev/ath/if_athioctl.h
==============================================================================
--- head/sys/dev/ath/if_athioctl.h      Sun Nov 27 18:06:03 2016        
(r309214)
+++ head/sys/dev/ath/if_athioctl.h      Sun Nov 27 18:34:29 2016        
(r309215)
@@ -447,4 +447,9 @@ struct ath_tx_radiotap_header {
 #define        SPECTRAL_CONTROL_ENABLE_AT_RESET        8
 #define        SPECTRAL_CONTROL_DISABLE_AT_RESET       9
 
+/*
+ * Bluetooth coexistence control parameters
+ */
+#define        SIOCGATHBTCOEX          _IOWR('i', 152, struct ath_diag)
+
 #endif /* _DEV_ATH_ATHIOCTL_H */
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to