Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1619067 > unrolled thread
| Started by | Stephen Boyd <sboyd@codeaurora.org> |
|---|---|
| First post | 2017-04-07 21:50 +0200 |
| Last post | 2017-04-07 21:50 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH] clk: add clk_possible_parents debugfs file Stephen Boyd <sboyd@codeaurora.org> - 2017-04-07 21:50 +0200
| From | Stephen Boyd <sboyd@codeaurora.org> |
|---|---|
| Date | 2017-04-07 21:50 +0200 |
| Subject | Re: [PATCH] clk: add clk_possible_parents debugfs file |
| Message-ID | <ttI3o-3uy-23@gated-at.bofh.it> |
On 03/21, Peter De Schrijver wrote:
> diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
> index f5f2bcd..2fa2fb8 100644
> --- a/drivers/clk/clk.c
> +++ b/drivers/clk/clk.c
> @@ -2128,6 +2128,34 @@ static int clk_dump_open(struct inode *inode, struct file *file)
> .release = single_release,
> };
>
> +static int possible_parents_dump(struct seq_file *s, void *data)
> +{
> + struct clk_core *core;
> + int i;
> +
> + core = (struct clk_core *)s->private;
Useless cast from void.
> +
> + for (i = 0; i < core->num_parents - 1; i++)
> + seq_printf(s, "%s ", core->parent_names[i]);
I hope we don't have spaces in clk names! I don't think we do.
> +
> + seq_printf(s, "%s\n", core->parent_names[i]);
> +
> + return 0;
> +}
> +
> +static int possible_parents_open(struct inode *inode, struct file *file)
> +{
> + return single_open(file, possible_parents_dump, inode->i_private);
> +}
> +
> +
Double newline.
I fixed both when applying to clk-next.
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project
Back to top | Article view | linux.kernel
csiph-web