Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
99412002
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
99412002
编写于
8月 31, 2011
作者:
S
Stanislaw Gruszka
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
iwlegacy: merge iwl-power.h into common.h
Signed-off-by:
N
Stanislaw Gruszka
<
sgruszka@redhat.com
>
上级
3fbbf9a8
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
12 addition
and
58 deletion
+12
-58
drivers/net/wireless/iwlegacy/3945.h
drivers/net/wireless/iwlegacy/3945.h
+0
-1
drivers/net/wireless/iwlegacy/commands.h
drivers/net/wireless/iwlegacy/commands.h
+2
-0
drivers/net/wireless/iwlegacy/common.c
drivers/net/wireless/iwlegacy/common.c
+0
-1
drivers/net/wireless/iwlegacy/common.h
drivers/net/wireless/iwlegacy/common.h
+10
-1
drivers/net/wireless/iwlegacy/iwl-power.h
drivers/net/wireless/iwlegacy/iwl-power.h
+0
-55
未找到文件。
drivers/net/wireless/iwlegacy/3945.h
浏览文件 @
99412002
...
...
@@ -37,7 +37,6 @@ extern const struct pci_device_id il3945_hw_card_ids[];
#include "common.h"
#include "iwl-prph.h"
#include "iwl-debug.h"
#include "iwl-power.h"
#include "iwl-led.h"
#include "iwl-eeprom.h"
...
...
drivers/net/wireless/iwlegacy/commands.h
浏览文件 @
99412002
...
...
@@ -64,6 +64,8 @@
#ifndef __il_commands_h__
#define __il_commands_h__
#include <linux/ieee80211.h>
struct
il_priv
;
/* uCode version contains 4 values: Major/Minor/API/Serial */
...
...
drivers/net/wireless/iwlegacy/common.c
浏览文件 @
99412002
...
...
@@ -43,7 +43,6 @@
#include "iwl-eeprom.h"
#include "iwl-debug.h"
#include "common.h"
#include "iwl-power.h"
const
char
*
il_get_cmd_string
(
u8
cmd
)
{
...
...
drivers/net/wireless/iwlegacy/common.h
浏览文件 @
99412002
...
...
@@ -33,12 +33,12 @@
#include <linux/wait.h>
#include <net/ieee80211_radiotap.h>
#include "commands.h"
#include "iwl-eeprom.h"
#include "csr.h"
#include "iwl-prph.h"
#include "iwl-debug.h"
#include "iwl-led.h"
#include "iwl-power.h"
struct
il_host_cmd
;
struct
il_cmd
;
...
...
@@ -938,6 +938,13 @@ struct il_rxon_context {
}
ht
;
};
struct
il_power_mgr
{
struct
il_powertable_cmd
sleep_cmd
;
struct
il_powertable_cmd
sleep_cmd_next
;
int
debug_sleep_level_override
;
bool
pci_pm
;
};
struct
il_priv
{
/* ieee device used by generic ieee processing code */
...
...
@@ -2996,4 +3003,6 @@ extern int il3945_rate_control_register(void);
extern
void
il4965_rate_control_unregister
(
void
);
extern
void
il3945_rate_control_unregister
(
void
);
extern
int
il_power_update_mode
(
struct
il_priv
*
il
,
bool
force
);
extern
void
il_power_initialize
(
struct
il_priv
*
il
);
#endif
/* __il_core_h__ */
drivers/net/wireless/iwlegacy/iwl-power.h
已删除
100644 → 0
浏览文件 @
3fbbf9a8
/******************************************************************************
*
* Copyright(c) 2007 - 2011 Intel Corporation. All rights reserved.
*
* Portions of this file are derived from the ipw3945 project, as well
* as portions of the ieee80211 subsystem header files.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of version 2 of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
*
* The full GNU General Public License is included in this distribution in the
* file called LICENSE.
*
* Contact Information:
* Intel Linux Wireless <ilw@linux.intel.com>
* Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
*****************************************************************************/
#ifndef __il_power_setting_h__
#define __il_power_setting_h__
#include "commands.h"
enum
il_power_level
{
IL_POWER_IDX_1
,
IL_POWER_IDX_2
,
IL_POWER_IDX_3
,
IL_POWER_IDX_4
,
IL_POWER_IDX_5
,
IL_POWER_NUM
};
struct
il_power_mgr
{
struct
il_powertable_cmd
sleep_cmd
;
struct
il_powertable_cmd
sleep_cmd_next
;
int
debug_sleep_level_override
;
bool
pci_pm
;
};
int
il_power_set_mode
(
struct
il_priv
*
il
,
struct
il_powertable_cmd
*
cmd
,
bool
force
);
int
il_power_update_mode
(
struct
il_priv
*
il
,
bool
force
);
void
il_power_initialize
(
struct
il_priv
*
il
);
#endif
/* __il_power_setting_h__ */
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录