Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
dce77377
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
161
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看板
提交
dce77377
编写于
8月 19, 2005
作者:
R
Russell King
提交者:
Russell King
8月 19, 2005
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[MMC] Use an IDR for host name indicies
Signed-off-by:
N
Russell King
<
rmk+kernel@arm.linux.org.uk
>
上级
1ad434d7
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
20 addition
and
2 deletion
+20
-2
drivers/mmc/mmc_sysfs.c
drivers/mmc/mmc_sysfs.c
+19
-2
include/linux/mmc/host.h
include/linux/mmc/host.h
+1
-0
未找到文件。
drivers/mmc/mmc_sysfs.c
浏览文件 @
dce77377
...
...
@@ -12,6 +12,7 @@
#include <linux/module.h>
#include <linux/init.h>
#include <linux/device.h>
#include <linux/idr.h>
#include <linux/mmc/card.h>
#include <linux/mmc/host.h>
...
...
@@ -236,6 +237,9 @@ static struct class mmc_host_class = {
.
release
=
mmc_host_classdev_release
,
};
static
DEFINE_IDR
(
mmc_host_idr
);
static
DEFINE_SPINLOCK
(
mmc_host_lock
);
/*
* Internal function. Allocate a new MMC host.
*/
...
...
@@ -261,10 +265,19 @@ struct mmc_host *mmc_alloc_host_sysfs(int extra, struct device *dev)
*/
int
mmc_add_host_sysfs
(
struct
mmc_host
*
host
)
{
static
unsigned
int
host_num
;
int
err
;
if
(
!
idr_pre_get
(
&
mmc_host_idr
,
GFP_KERNEL
))
return
-
ENOMEM
;
spin_lock
(
&
mmc_host_lock
);
err
=
idr_get_new
(
&
mmc_host_idr
,
host
,
&
host
->
index
);
spin_unlock
(
&
mmc_host_lock
);
if
(
err
)
return
err
;
snprintf
(
host
->
class_dev
.
class_id
,
BUS_ID_SIZE
,
"mmc%d"
,
host
_num
++
);
"mmc%d"
,
host
->
index
);
return
class_device_add
(
&
host
->
class_dev
);
}
...
...
@@ -275,6 +288,10 @@ int mmc_add_host_sysfs(struct mmc_host *host)
void
mmc_remove_host_sysfs
(
struct
mmc_host
*
host
)
{
class_device_del
(
&
host
->
class_dev
);
spin_lock
(
&
mmc_host_lock
);
idr_remove
(
&
mmc_host_idr
,
host
->
index
);
spin_unlock
(
&
mmc_host_lock
);
}
/*
...
...
include/linux/mmc/host.h
浏览文件 @
dce77377
...
...
@@ -64,6 +64,7 @@ struct device;
struct
mmc_host
{
struct
device
*
dev
;
struct
class_device
class_dev
;
int
index
;
struct
mmc_host_ops
*
ops
;
unsigned
int
f_min
;
unsigned
int
f_max
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录