Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
e07b2b59
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
e07b2b59
编写于
5月 12, 2014
作者:
M
Mike Turquette
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'clk-fixes' into clk-next
上级
95713978
8e33f91a
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
8 addition
and
3 deletion
+8
-3
Documentation/devicetree/bindings/clock/renesas,cpg-mstp-clocks.txt
...ion/devicetree/bindings/clock/renesas,cpg-mstp-clocks.txt
+1
-1
drivers/clk/shmobile/clk-mstp.c
drivers/clk/shmobile/clk-mstp.c
+7
-2
未找到文件。
Documentation/devicetree/bindings/clock/renesas,cpg-mstp-clocks.txt
浏览文件 @
e07b2b59
...
...
@@ -43,7 +43,7 @@ Example
clock-output-names =
"tpu0", "mmcif1", "sdhi3", "sdhi2",
"sdhi1", "sdhi0", "mmcif0";
renesas,
clock-indices = <
clock-indices = <
R8A7790_CLK_TPU0 R8A7790_CLK_MMCIF1 R8A7790_CLK_SDHI3
R8A7790_CLK_SDHI2 R8A7790_CLK_SDHI1 R8A7790_CLK_SDHI0
R8A7790_CLK_MMCIF0
...
...
drivers/clk/shmobile/clk-mstp.c
浏览文件 @
e07b2b59
...
...
@@ -156,6 +156,7 @@ cpg_mstp_clock_register(const char *name, const char *parent_name,
static
void
__init
cpg_mstp_clocks_init
(
struct
device_node
*
np
)
{
struct
mstp_clock_group
*
group
;
const
char
*
idxname
;
struct
clk
**
clks
;
unsigned
int
i
;
...
...
@@ -184,6 +185,11 @@ static void __init cpg_mstp_clocks_init(struct device_node *np)
for
(
i
=
0
;
i
<
MSTP_MAX_CLOCKS
;
++
i
)
clks
[
i
]
=
ERR_PTR
(
-
ENOENT
);
if
(
of_find_property
(
np
,
"clock-indices"
,
&
i
))
idxname
=
"clock-indices"
;
else
idxname
=
"renesas,clock-indices"
;
for
(
i
=
0
;
i
<
MSTP_MAX_CLOCKS
;
++
i
)
{
const
char
*
parent_name
;
const
char
*
name
;
...
...
@@ -197,8 +203,7 @@ static void __init cpg_mstp_clocks_init(struct device_node *np)
continue
;
parent_name
=
of_clk_get_parent_name
(
np
,
i
);
ret
=
of_property_read_u32_index
(
np
,
"renesas,clock-indices"
,
i
,
&
clkidx
);
ret
=
of_property_read_u32_index
(
np
,
idxname
,
i
,
&
clkidx
);
if
(
parent_name
==
NULL
||
ret
<
0
)
break
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录