From: Mike Turquette <mturquette@linaro.org>
To: Viresh Kumar <viresh.kumar@linaro.org>, arnd@linaro.org, olof@lixom.net
Cc: linux-arm-kernel@lists.infradead.org, spear-devel@list.st.com,
b.zolnierkie@samsung.com, bhelgaas@google.com,
mark@nicholnet.com, linux-pci@vger.kernel.org,
"Pratyush Anand" <pratyush.anand@st.com>,
"Viresh Kumar" <viresh.kumar@linaro.org>
Subject: Re: [PATCH V9 3/7] ARM: SPEAr13xx: Fix pcie clock name
Date: Fri, 11 Jul 2014 06:50:38 -0700 [thread overview]
Message-ID: <20140711135038.9850.6196@quantum> (raw)
In-Reply-To: <08c2b017de1d545e42d97ce911ed913aeba46ca9.1404976058.git.viresh.kumar@linaro.org>
Quoting Viresh Kumar (2014-07-10 00:26:34)
> From: Pratyush Anand <pratyush.anand@st.com>
>
> Follow dt clock naming convention for PCIe clocks.
>
> Signed-off-by: Pratyush Anand <pratyush.anand@st.com>
> Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
> Cc: Mike Turquette <mturquette@linaro.org>
> [viresh: fixed logs/cclist]
> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Applied to clk-next.
Regards,
Mike
> ---
> drivers/clk/spear/spear1310_clock.c | 6 +++---
> drivers/clk/spear/spear1340_clock.c | 2 +-
> 2 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/clk/spear/spear1310_clock.c b/drivers/clk/spear/spear1310_clock.c
> index 65894f7..4daa597 100644
> --- a/drivers/clk/spear/spear1310_clock.c
> +++ b/drivers/clk/spear/spear1310_clock.c
> @@ -742,19 +742,19 @@ void __init spear1310_clk_init(void __iomem *misc_base, void __iomem *ras_base)
> clk = clk_register_gate(NULL, "pcie_sata_0_clk", "ahb_clk", 0,
> SPEAR1310_PERIP1_CLK_ENB, SPEAR1310_PCIE_SATA_0_CLK_ENB,
> 0, &_lock);
> - clk_register_clkdev(clk, NULL, "dw_pcie.0");
> + clk_register_clkdev(clk, NULL, "b1000000.pcie");
> clk_register_clkdev(clk, NULL, "b1000000.ahci");
>
> clk = clk_register_gate(NULL, "pcie_sata_1_clk", "ahb_clk", 0,
> SPEAR1310_PERIP1_CLK_ENB, SPEAR1310_PCIE_SATA_1_CLK_ENB,
> 0, &_lock);
> - clk_register_clkdev(clk, NULL, "dw_pcie.1");
> + clk_register_clkdev(clk, NULL, "b1800000.pcie");
> clk_register_clkdev(clk, NULL, "b1800000.ahci");
>
> clk = clk_register_gate(NULL, "pcie_sata_2_clk", "ahb_clk", 0,
> SPEAR1310_PERIP1_CLK_ENB, SPEAR1310_PCIE_SATA_2_CLK_ENB,
> 0, &_lock);
> - clk_register_clkdev(clk, NULL, "dw_pcie.2");
> + clk_register_clkdev(clk, NULL, "b4000000.pcie");
> clk_register_clkdev(clk, NULL, "b4000000.ahci");
>
> clk = clk_register_gate(NULL, "sysram0_clk", "ahb_clk", 0,
> diff --git a/drivers/clk/spear/spear1340_clock.c b/drivers/clk/spear/spear1340_clock.c
> index fe835c1..5a5c664 100644
> --- a/drivers/clk/spear/spear1340_clock.c
> +++ b/drivers/clk/spear/spear1340_clock.c
> @@ -839,7 +839,7 @@ void __init spear1340_clk_init(void __iomem *misc_base)
> clk = clk_register_gate(NULL, "pcie_sata_clk", "ahb_clk", 0,
> SPEAR1340_PERIP1_CLK_ENB, SPEAR1340_PCIE_SATA_CLK_ENB,
> 0, &_lock);
> - clk_register_clkdev(clk, NULL, "dw_pcie");
> + clk_register_clkdev(clk, NULL, "b1000000.pcie");
> clk_register_clkdev(clk, NULL, "b1000000.ahci");
>
> clk = clk_register_gate(NULL, "sysram0_clk", "ahb_clk", 0,
> --
> 2.0.0.rc2
>
WARNING: multiple messages have this Message-ID (diff)
From: mturquette@linaro.org (Mike Turquette)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH V9 3/7] ARM: SPEAr13xx: Fix pcie clock name
Date: Fri, 11 Jul 2014 06:50:38 -0700 [thread overview]
Message-ID: <20140711135038.9850.6196@quantum> (raw)
In-Reply-To: <08c2b017de1d545e42d97ce911ed913aeba46ca9.1404976058.git.viresh.kumar@linaro.org>
Quoting Viresh Kumar (2014-07-10 00:26:34)
> From: Pratyush Anand <pratyush.anand@st.com>
>
> Follow dt clock naming convention for PCIe clocks.
>
> Signed-off-by: Pratyush Anand <pratyush.anand@st.com>
> Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
> Cc: Mike Turquette <mturquette@linaro.org>
> [viresh: fixed logs/cclist]
> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Applied to clk-next.
Regards,
Mike
> ---
> drivers/clk/spear/spear1310_clock.c | 6 +++---
> drivers/clk/spear/spear1340_clock.c | 2 +-
> 2 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/clk/spear/spear1310_clock.c b/drivers/clk/spear/spear1310_clock.c
> index 65894f7..4daa597 100644
> --- a/drivers/clk/spear/spear1310_clock.c
> +++ b/drivers/clk/spear/spear1310_clock.c
> @@ -742,19 +742,19 @@ void __init spear1310_clk_init(void __iomem *misc_base, void __iomem *ras_base)
> clk = clk_register_gate(NULL, "pcie_sata_0_clk", "ahb_clk", 0,
> SPEAR1310_PERIP1_CLK_ENB, SPEAR1310_PCIE_SATA_0_CLK_ENB,
> 0, &_lock);
> - clk_register_clkdev(clk, NULL, "dw_pcie.0");
> + clk_register_clkdev(clk, NULL, "b1000000.pcie");
> clk_register_clkdev(clk, NULL, "b1000000.ahci");
>
> clk = clk_register_gate(NULL, "pcie_sata_1_clk", "ahb_clk", 0,
> SPEAR1310_PERIP1_CLK_ENB, SPEAR1310_PCIE_SATA_1_CLK_ENB,
> 0, &_lock);
> - clk_register_clkdev(clk, NULL, "dw_pcie.1");
> + clk_register_clkdev(clk, NULL, "b1800000.pcie");
> clk_register_clkdev(clk, NULL, "b1800000.ahci");
>
> clk = clk_register_gate(NULL, "pcie_sata_2_clk", "ahb_clk", 0,
> SPEAR1310_PERIP1_CLK_ENB, SPEAR1310_PCIE_SATA_2_CLK_ENB,
> 0, &_lock);
> - clk_register_clkdev(clk, NULL, "dw_pcie.2");
> + clk_register_clkdev(clk, NULL, "b4000000.pcie");
> clk_register_clkdev(clk, NULL, "b4000000.ahci");
>
> clk = clk_register_gate(NULL, "sysram0_clk", "ahb_clk", 0,
> diff --git a/drivers/clk/spear/spear1340_clock.c b/drivers/clk/spear/spear1340_clock.c
> index fe835c1..5a5c664 100644
> --- a/drivers/clk/spear/spear1340_clock.c
> +++ b/drivers/clk/spear/spear1340_clock.c
> @@ -839,7 +839,7 @@ void __init spear1340_clk_init(void __iomem *misc_base)
> clk = clk_register_gate(NULL, "pcie_sata_clk", "ahb_clk", 0,
> SPEAR1340_PERIP1_CLK_ENB, SPEAR1340_PCIE_SATA_CLK_ENB,
> 0, &_lock);
> - clk_register_clkdev(clk, NULL, "dw_pcie");
> + clk_register_clkdev(clk, NULL, "b1000000.pcie");
> clk_register_clkdev(clk, NULL, "b1000000.ahci");
>
> clk = clk_register_gate(NULL, "sysram0_clk", "ahb_clk", 0,
> --
> 2.0.0.rc2
>
next prev parent reply other threads:[~2014-07-11 13:50 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-10 7:26 [PATCH V9 0/7] ARM: SPEAr13xx: Add PCIe support Viresh Kumar
2014-07-10 7:26 ` Viresh Kumar
2014-07-10 7:26 ` [PATCH V9 1/7] pcie: Add designware wrapper driver for SPEAr13xx Viresh Kumar
2014-07-10 7:26 ` Viresh Kumar
2014-07-10 21:39 ` Bjorn Helgaas
2014-07-10 21:39 ` Bjorn Helgaas
2014-07-11 4:04 ` Viresh Kumar
2014-07-11 4:04 ` Viresh Kumar
2014-07-14 5:01 ` Viresh Kumar
2014-07-14 5:01 ` Viresh Kumar
2014-07-10 7:26 ` [PATCH V9 2/7] phy: Add drivers for PCIe and SATA phy on SPEAr13xx Viresh Kumar
2014-07-10 7:26 ` Viresh Kumar
2014-07-10 13:17 ` Kishon Vijay Abraham I
2014-07-10 13:17 ` Kishon Vijay Abraham I
2014-07-10 13:30 ` Viresh Kumar
2014-07-10 13:30 ` Viresh Kumar
2014-07-10 13:32 ` Kishon Vijay Abraham I
2014-07-10 13:32 ` Kishon Vijay Abraham I
2014-07-11 8:32 ` Kishon Vijay Abraham I
2014-07-11 8:32 ` Kishon Vijay Abraham I
2014-07-14 5:22 ` Mohit KUMAR DCG
2014-07-14 5:22 ` Mohit KUMAR DCG
2014-07-14 5:24 ` Viresh Kumar
2014-07-14 5:24 ` Viresh Kumar
2014-07-14 5:34 ` Viresh Kumar
2014-07-14 5:34 ` Viresh Kumar
2014-07-11 9:07 ` Viresh Kumar
2014-07-11 9:07 ` Viresh Kumar
2014-07-14 5:37 ` Viresh Kumar
2014-07-14 5:37 ` Viresh Kumar
2014-07-14 5:31 ` Viresh Kumar
2014-07-14 5:31 ` Viresh Kumar
2014-07-10 7:26 ` [PATCH V9 3/7] ARM: SPEAr13xx: Fix pcie clock name Viresh Kumar
2014-07-10 7:26 ` Viresh Kumar
2014-07-11 13:50 ` Mike Turquette [this message]
2014-07-11 13:50 ` Mike Turquette
2014-07-10 7:26 ` [PATCH V9 4/7] ARM: SPEAr13xx: Fix static mapping table Viresh Kumar
2014-07-10 7:26 ` Viresh Kumar
2014-07-10 7:26 ` [PATCH V9 5/7] ARM: SPEAr13xx: Add bindings and dt node for misc block Viresh Kumar
2014-07-10 7:26 ` Viresh Kumar
2014-07-10 7:26 ` [PATCH V9 6/7] ARM: SPEAr13xx: Add pcie and miphy DT nodes Viresh Kumar
2014-07-10 7:26 ` Viresh Kumar
2014-07-10 7:26 ` [PATCH V9 7/7] ARM: SPEAr13xx: Update defconfigs Viresh Kumar
2014-07-10 7:26 ` Viresh Kumar
2014-07-14 5:45 ` [PATCH V9 0/7] ARM: SPEAr13xx: Add PCIe support Viresh Kumar
2014-07-14 5:45 ` Viresh Kumar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140711135038.9850.6196@quantum \
--to=mturquette@linaro.org \
--cc=arnd@linaro.org \
--cc=b.zolnierkie@samsung.com \
--cc=bhelgaas@google.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-pci@vger.kernel.org \
--cc=mark@nicholnet.com \
--cc=olof@lixom.net \
--cc=pratyush.anand@st.com \
--cc=spear-devel@list.st.com \
--cc=viresh.kumar@linaro.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.