Commit 96488c09 authored by Tero Kristo's avatar Tero Kristo

clk: keystone: sci-clk: cut down the clock name length

There is no need to store the full node name to the individual clocks,
as this will just consome memory and make the clock debug entries
unnecessary long. Just shorten this to "clk" for now.
Acked-by: default avatarSantosh Shilimkar <ssantosh@kernel.org>
Signed-off-by: default avatarTero Kristo <t-kristo@ti.com>
parent a188339c
...@@ -280,8 +280,8 @@ static int _sci_clk_build(struct sci_clk_provider *provider, ...@@ -280,8 +280,8 @@ static int _sci_clk_build(struct sci_clk_provider *provider,
int i; int i;
int ret = 0; int ret = 0;
name = kasprintf(GFP_KERNEL, "%s:%d:%d", dev_name(provider->dev), name = kasprintf(GFP_KERNEL, "clk:%d:%d", sci_clk->dev_id,
sci_clk->dev_id, sci_clk->clk_id); sci_clk->clk_id);
init.name = name; init.name = name;
...@@ -306,8 +306,7 @@ static int _sci_clk_build(struct sci_clk_provider *provider, ...@@ -306,8 +306,7 @@ static int _sci_clk_build(struct sci_clk_provider *provider,
for (i = 0; i < sci_clk->num_parents; i++) { for (i = 0; i < sci_clk->num_parents; i++) {
char *parent_name; char *parent_name;
parent_name = kasprintf(GFP_KERNEL, "%s:%d:%d", parent_name = kasprintf(GFP_KERNEL, "clk:%d:%d",
dev_name(provider->dev),
sci_clk->dev_id, sci_clk->dev_id,
sci_clk->clk_id + 1 + i); sci_clk->clk_id + 1 + i);
if (!parent_name) { if (!parent_name) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment