Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
b3f1b8cf
K
Kernel
项目概览
openeuler
/
Kernel
大约 1 年 前同步成功
通知
6
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
b3f1b8cf
编写于
2月 27, 2007
作者:
J
John W. Linville
提交者:
Jeff Garzik
4月 28, 2007
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[PATCH] libertas: fix build breakage from netdev class_device -> device
Signed-off-by:
N
John W. Linville
<
linville@tuxdriver.com
>
上级
ebb4e07e
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
8 addition
and
8 deletion
+8
-8
drivers/net/wireless/libertas/main.c
drivers/net/wireless/libertas/main.c
+8
-8
未找到文件。
drivers/net/wireless/libertas/main.c
浏览文件 @
b3f1b8cf
...
...
@@ -186,12 +186,12 @@ static u8 *default_fw_name = "usb8388.bin";
/**
* Attributes exported through sysfs
*/
#define to_net_dev(class) container_of(class, struct net_device, class_dev)
/**
* @brief Get function for sysfs attribute libertas_mpp
*/
static
ssize_t
libertas_mpp_get
(
struct
class_device
*
dev
,
char
*
buf
)
{
static
ssize_t
libertas_mpp_get
(
struct
device
*
dev
,
struct
device_attribute
*
attr
,
char
*
buf
)
{
struct
cmd_ds_mesh_access
mesh_access
;
memset
(
&
mesh_access
,
0
,
sizeof
(
mesh_access
));
...
...
@@ -206,8 +206,8 @@ static ssize_t libertas_mpp_get(struct class_device * dev, char * buf) {
/**
* @brief Set function for sysfs attribute libertas_mpp
*/
static
ssize_t
libertas_mpp_set
(
struct
class_device
*
dev
,
const
char
*
buf
,
size_t
count
)
{
static
ssize_t
libertas_mpp_set
(
struct
device
*
dev
,
s
truct
device_attribute
*
attr
,
const
char
*
buf
,
s
ize_t
count
)
{
struct
cmd_ds_mesh_access
mesh_access
;
...
...
@@ -224,7 +224,7 @@ static ssize_t libertas_mpp_set(struct class_device * dev, const char * buf,
* libertas_mpp attribute to be exported per mshX interface
* through sysfs (/sys/class/net/mshX/libertas-mpp)
*/
static
CLASS_
DEVICE_ATTR
(
libertas_mpp
,
0644
,
libertas_mpp_get
,
static
DEVICE_ATTR
(
libertas_mpp
,
0644
,
libertas_mpp_get
,
libertas_mpp_set
);
/**
...
...
@@ -998,14 +998,14 @@ wlan_private *wlan_add_card(void *card)
if
(
!
(
wlan_pm_dev
=
pm_register
(
PM_UNKNOWN_DEV
,
0
,
wlan_pm_callback
)))
lbs_pr_alert
(
"failed to register PM callback
\n
"
);
#endif
if
(
class_device_create_file
(
&
(
mesh_dev
->
class_dev
),
&
class_device
_attr_libertas_mpp
))
if
(
device_create_file
(
&
(
mesh_dev
->
dev
),
&
dev
_attr_libertas_mpp
))
goto
err_create_file
;
LEAVE
();
return
priv
;
err_create_file:
class_device_remove_file
(
&
(
mesh_dev
->
class_dev
),
&
class_device
_attr_libertas_mpp
);
device_remove_file
(
&
(
mesh_dev
->
dev
),
&
dev
_attr_libertas_mpp
);
err_init_fw:
libertas_sbi_unregister_dev
(
priv
);
err_registerdev:
...
...
@@ -1069,7 +1069,7 @@ int wlan_remove_card(void *card)
wake_pending_cmdnodes
(
priv
);
class_device_remove_file
(
&
(
mesh_dev
->
class_dev
),
&
class_device
_attr_libertas_mpp
);
device_remove_file
(
&
(
mesh_dev
->
dev
),
&
dev
_attr_libertas_mpp
);
unregister_netdev
(
mesh_dev
);
unregister_netdev
(
dev
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录