Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
3cc8ff9f
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
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看板
提交
3cc8ff9f
编写于
3月 31, 2013
作者:
R
Rafał Miłecki
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
b43: N-PHY: move tables init function to tables file
Signed-off-by:
N
Rafał Miłecki
<
zajec5@gmail.com
>
上级
9a98979e
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
12 addition
and
16 deletion
+12
-16
drivers/net/wireless/b43/phy_n.c
drivers/net/wireless/b43/phy_n.c
+0
-12
drivers/net/wireless/b43/tables_nphy.c
drivers/net/wireless/b43/tables_nphy.c
+11
-2
drivers/net/wireless/b43/tables_nphy.h
drivers/net/wireless/b43/tables_nphy.h
+1
-2
未找到文件。
drivers/net/wireless/b43/phy_n.c
浏览文件 @
3cc8ff9f
...
...
@@ -4858,18 +4858,6 @@ static void b43_nphy_set_rx_core_state(struct b43_wldev *dev, u8 mask)
* N-PHY init
**************************************************/
/*
* Upload the N-PHY tables.
* http://bcm-v4.sipsolutions.net/802.11/PHY/N/InitTables
*/
static
void
b43_nphy_tables_init
(
struct
b43_wldev
*
dev
)
{
if
(
dev
->
phy
.
rev
<
3
)
b43_nphy_rev0_1_2_tables_init
(
dev
);
else
b43_nphy_rev3plus_tables_init
(
dev
);
}
/* http://bcm-v4.sipsolutions.net/802.11/PHY/N/MIMOConfig */
static
void
b43_nphy_update_mimo_config
(
struct
b43_wldev
*
dev
,
s32
preamble
)
{
...
...
drivers/net/wireless/b43/tables_nphy.c
浏览文件 @
3cc8ff9f
...
...
@@ -3097,7 +3097,7 @@ void b43_ntab_write_bulk(struct b43_wldev *dev, u32 offset,
#define ntab_upload(dev, offset, data) do { \
b43_ntab_write_bulk(dev, offset, offset##_SIZE, data); \
} while (0)
void
b43_nphy_rev0_1_2_tables_init
(
struct
b43_wldev
*
dev
)
static
void
b43_nphy_tables_init_rev0
(
struct
b43_wldev
*
dev
)
{
/* Static tables */
ntab_upload
(
dev
,
B43_NTAB_FRAMESTRUCT
,
b43_ntab_framestruct
);
...
...
@@ -3133,7 +3133,7 @@ void b43_nphy_rev0_1_2_tables_init(struct b43_wldev *dev)
#define ntab_upload_r3(dev, offset, data) do { \
b43_ntab_write_bulk(dev, offset, ARRAY_SIZE(data), data); \
} while (0)
void
b43_nphy_rev3plus_tables_init
(
struct
b43_wldev
*
dev
)
static
void
b43_nphy_tables_init_rev3
(
struct
b43_wldev
*
dev
)
{
struct
ssb_sprom
*
sprom
=
dev
->
dev
->
bus_sprom
;
...
...
@@ -3174,6 +3174,15 @@ void b43_nphy_rev3plus_tables_init(struct b43_wldev *dev)
B43_WARN_ON
(
1
);
}
/* http://bcm-v4.sipsolutions.net/802.11/PHY/N/InitTables */
void
b43_nphy_tables_init
(
struct
b43_wldev
*
dev
)
{
if
(
dev
->
phy
.
rev
>=
3
)
b43_nphy_tables_init_rev3
(
dev
);
else
b43_nphy_tables_init_rev0
(
dev
);
}
/* http://bcm-v4.sipsolutions.net/802.11/PHY/N/GetIpaGainTbl */
static
const
u32
*
b43_nphy_get_ipa_gain_table
(
struct
b43_wldev
*
dev
)
{
...
...
drivers/net/wireless/b43/tables_nphy.h
浏览文件 @
3cc8ff9f
...
...
@@ -182,8 +182,7 @@ void b43_ntab_write(struct b43_wldev *dev, u32 offset, u32 value);
void
b43_ntab_write_bulk
(
struct
b43_wldev
*
dev
,
u32
offset
,
unsigned
int
nr_elements
,
const
void
*
_data
);
void
b43_nphy_rev0_1_2_tables_init
(
struct
b43_wldev
*
dev
);
void
b43_nphy_rev3plus_tables_init
(
struct
b43_wldev
*
dev
);
void
b43_nphy_tables_init
(
struct
b43_wldev
*
dev
);
const
u32
*
b43_nphy_get_tx_gain_table
(
struct
b43_wldev
*
dev
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录