2016-04-20 01:28:43

by Stephen Boyd

[permalink] [raw]
Subject: [PATCH] ACPI / amba: Remove CLK_IS_ROOT

This flag is a no-op now (see commit 47b0eeb3dc8a "clk: Deprecate
CLK_IS_ROOT", 2016-02-02) so remove it.

Cc: Graeme Gregory <[email protected]>
Cc: Aleksey Makarov <[email protected]>
Signed-off-by: Stephen Boyd <[email protected]>
---
drivers/acpi/acpi_amba.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/acpi/acpi_amba.c b/drivers/acpi/acpi_amba.c
index 2a61b54ab968..7f77c071709a 100644
--- a/drivers/acpi/acpi_amba.c
+++ b/drivers/acpi/acpi_amba.c
@@ -35,8 +35,7 @@ static void amba_register_dummy_clk(void)
if (amba_dummy_clk)
return;

- amba_dummy_clk = clk_register_fixed_rate(NULL, "apb_pclk", NULL,
- CLK_IS_ROOT, 0);
+ amba_dummy_clk = clk_register_fixed_rate(NULL, "apb_pclk", NULL, 0, 0);
clk_register_clkdev(amba_dummy_clk, "apb_pclk", NULL);
}

--
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project


2016-04-20 07:28:40

by Graeme Gregory

[permalink] [raw]
Subject: Re: [PATCH] ACPI / amba: Remove CLK_IS_ROOT

On 20 April 2016 at 02:28, Stephen Boyd <[email protected]> wrote:
> This flag is a no-op now (see commit 47b0eeb3dc8a "clk: Deprecate
> CLK_IS_ROOT", 2016-02-02) so remove it.
>
> Cc: Graeme Gregory <[email protected]>
> Cc: Aleksey Makarov <[email protected]>
> Signed-off-by: Stephen Boyd <[email protected]>
> ---
> drivers/acpi/acpi_amba.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/acpi/acpi_amba.c b/drivers/acpi/acpi_amba.c
> index 2a61b54ab968..7f77c071709a 100644
> --- a/drivers/acpi/acpi_amba.c
> +++ b/drivers/acpi/acpi_amba.c
> @@ -35,8 +35,7 @@ static void amba_register_dummy_clk(void)
> if (amba_dummy_clk)
> return;
>
> - amba_dummy_clk = clk_register_fixed_rate(NULL, "apb_pclk", NULL,
> - CLK_IS_ROOT, 0);
> + amba_dummy_clk = clk_register_fixed_rate(NULL, "apb_pclk", NULL, 0, 0);
> clk_register_clkdev(amba_dummy_clk, "apb_pclk", NULL);
> }
>
Looks good to me.

Acked-by: Graeme Gregory <[email protected]>