33 lines
1.2 KiB
C
33 lines
1.2 KiB
C
|
/*
|
||
|
* Copyright (c) 2010-2011 Atheros Communications Inc.
|
||
|
*
|
||
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||
|
* purpose with or without fee is hereby granted, provided that the above
|
||
|
* copyright notice and this permission notice appear in all copies.
|
||
|
*
|
||
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* This file contains the definitions of the WMI protocol specified in the
|
||
|
* Wireless Module Interface (WMI). It includes definitions of all the
|
||
|
* commands and events. Commands are messages from the host to the WM.
|
||
|
* Events and Replies are messages from the WM to the host.
|
||
|
*/
|
||
|
|
||
|
#ifndef WMI_BTCOEX_H
|
||
|
#define WMI_BTCOEX_H
|
||
|
|
||
|
#include <linux/ieee80211.h>
|
||
|
|
||
|
int ath6kl_wmi_send_btcoex_cmd(struct wmi *wmi,
|
||
|
u8 *buf, int len);
|
||
|
|
||
|
#endif /* WMI_BTCOEX_H */
|