⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wmi_host.h

📁 Linux下SDIO设备的驱动程序
💻 H
字号:
/* * Copyright (c) 2004-2006 Atheros Communications Inc. * *  Wireless Network driver for Atheros AR6001 * *  This program is free software; you can redistribute it and/or modify *  it under the terms of the GNU General Public License version 2 as *  published by the Free Software Foundation; * *  Software distributed under the License is distributed on an "AS *  IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or *  implied. See the License for the specific language governing *  rights and limitations under the License. * * * This file contains local definitios for the wmi host module. * */#ifndef _WMI_HOST_H_#define _WMI_HOST_H_#ifdef __cplusplusextern "C" {#endif/* * IP QoS Field definitions according to 802.1p */#define BEST_EFFORT_PRI         0#define BACKGROUND_PRI          1#define EXCELLENT_EFFORT_PRI    3#define CONTROLLED_LOAD_PRI     4#define VIDEO_PRI               5#define VOICE_PRI               6#define NETWORK_CONTROL_PRI     7struct wmi_stats {    A_UINT32    cmd_len_err;    A_UINT32    cmd_id_err;};struct wmi_priority_state {    A_UINT8     inUse;    A_UINT8     mbox;};struct wmi_mbox_state {    A_UINT8     trafficClass;    A_INT8      priorityNum;};struct wmi_t {    A_BOOL                          wmi_ready;    A_BOOL                          wmi_numQoSStream;    struct wmi_priority_state       wmi_priority[WMI_MAX_NUM_PRI_STREAMS];    struct wmi_mbox_state           wmi_mboxMap[2][WMI_MBOX_COUNT];    A_INT8                          wmi_trafficClassMap[2][WMM_NUM_AC];    A_UINT8                         wmi_olderPriRxMbox;    A_UINT8                         wmi_newerPriRxMbox;    void                           *wmi_devt;    struct wmi_stats                wmi_stats;    struct ieee80211_node_table     wmi_scan_table;    A_BOOL                          wmi_pstreamCmdInProgress[2][WMM_NUM_AC];    A_BOOL                          wmi_cpstreamCmdInProgress;    A_UINT8                         wmi_bssid[ATH_MAC_LEN];    A_UINT8                         wmi_powerMode;    A_UINT8                         wmi_phyMode;};#ifdef __cplusplus}#endif#endif /* _WMI_HOST_H_ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -