* [PATCH] mmc: atmel-mci: document clock properties
@ 2013-12-17 9:36 Boris BREZILLON
2013-12-19 8:04 ` Ludovic Desroches
2013-12-19 8:45 ` Nicolas Ferre
0 siblings, 2 replies; 3+ messages in thread
From: Boris BREZILLON @ 2013-12-17 9:36 UTC (permalink / raw)
To: Arnd Bergmann, Rob Landley, Nicolas Ferre, Ludovic Desroches
Cc: devicetree, linux-doc, linux-kernel, Boris BREZILLON
Document the clock properties required by the atmel-mci driver.
Signed-off-by: Boris BREZILLON <b.brezillon@overkiz.com>
---
.../devicetree/bindings/mmc/atmel-hsmci.txt | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/Documentation/devicetree/bindings/mmc/atmel-hsmci.txt b/Documentation/devicetree/bindings/mmc/atmel-hsmci.txt
index 0a85c70..07ad020 100644
--- a/Documentation/devicetree/bindings/mmc/atmel-hsmci.txt
+++ b/Documentation/devicetree/bindings/mmc/atmel-hsmci.txt
@@ -13,6 +13,9 @@ Required properties:
- #address-cells: should be one. The cell is the slot id.
- #size-cells: should be zero.
- at least one slot node
+- clock-names: tuple listing input clock names.
+ Required elements: "mci_clk"
+- clocks: phandles to input clocks.
The node contains child nodes for each slot that the platform uses
@@ -24,6 +27,8 @@ mmc0: mmc@f0008000 {
interrupts = <12 4>;
#address-cells = <1>;
#size-cells = <0>;
+ clock-names = "mci_clk";
+ clocks = <&mci0_clk>;
[ child node definitions...]
};
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] mmc: atmel-mci: document clock properties
2013-12-17 9:36 [PATCH] mmc: atmel-mci: document clock properties Boris BREZILLON
@ 2013-12-19 8:04 ` Ludovic Desroches
2013-12-19 8:45 ` Nicolas Ferre
1 sibling, 0 replies; 3+ messages in thread
From: Ludovic Desroches @ 2013-12-19 8:04 UTC (permalink / raw)
To: Boris BREZILLON
Cc: Arnd Bergmann, Rob Landley, Nicolas Ferre, devicetree, linux-doc,
linux-kernel
On Tue, Dec 17, 2013 at 10:36:17AM +0100, Boris BREZILLON wrote:
> Document the clock properties required by the atmel-mci driver.
>
> Signed-off-by: Boris BREZILLON <b.brezillon@overkiz.com>
Acked-by: Ludovic Desroches <ludovic.desroches@atmel.com>
> ---
> .../devicetree/bindings/mmc/atmel-hsmci.txt | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/mmc/atmel-hsmci.txt b/Documentation/devicetree/bindings/mmc/atmel-hsmci.txt
> index 0a85c70..07ad020 100644
> --- a/Documentation/devicetree/bindings/mmc/atmel-hsmci.txt
> +++ b/Documentation/devicetree/bindings/mmc/atmel-hsmci.txt
> @@ -13,6 +13,9 @@ Required properties:
> - #address-cells: should be one. The cell is the slot id.
> - #size-cells: should be zero.
> - at least one slot node
> +- clock-names: tuple listing input clock names.
> + Required elements: "mci_clk"
> +- clocks: phandles to input clocks.
>
> The node contains child nodes for each slot that the platform uses
>
> @@ -24,6 +27,8 @@ mmc0: mmc@f0008000 {
> interrupts = <12 4>;
> #address-cells = <1>;
> #size-cells = <0>;
> + clock-names = "mci_clk";
> + clocks = <&mci0_clk>;
>
> [ child node definitions...]
> };
> --
> 1.7.9.5
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] mmc: atmel-mci: document clock properties
2013-12-17 9:36 [PATCH] mmc: atmel-mci: document clock properties Boris BREZILLON
2013-12-19 8:04 ` Ludovic Desroches
@ 2013-12-19 8:45 ` Nicolas Ferre
1 sibling, 0 replies; 3+ messages in thread
From: Nicolas Ferre @ 2013-12-19 8:45 UTC (permalink / raw)
To: Boris BREZILLON, Arnd Bergmann, Rob Landley, Ludovic Desroches
Cc: devicetree, linux-doc, linux-kernel
On 17/12/2013 10:36, Boris BREZILLON :
> Document the clock properties required by the atmel-mci driver.
>
> Signed-off-by: Boris BREZILLON <b.brezillon@overkiz.com>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
> ---
> .../devicetree/bindings/mmc/atmel-hsmci.txt | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/mmc/atmel-hsmci.txt b/Documentation/devicetree/bindings/mmc/atmel-hsmci.txt
> index 0a85c70..07ad020 100644
> --- a/Documentation/devicetree/bindings/mmc/atmel-hsmci.txt
> +++ b/Documentation/devicetree/bindings/mmc/atmel-hsmci.txt
> @@ -13,6 +13,9 @@ Required properties:
> - #address-cells: should be one. The cell is the slot id.
> - #size-cells: should be zero.
> - at least one slot node
> +- clock-names: tuple listing input clock names.
> + Required elements: "mci_clk"
> +- clocks: phandles to input clocks.
>
> The node contains child nodes for each slot that the platform uses
>
> @@ -24,6 +27,8 @@ mmc0: mmc@f0008000 {
> interrupts = <12 4>;
> #address-cells = <1>;
> #size-cells = <0>;
> + clock-names = "mci_clk";
> + clocks = <&mci0_clk>;
>
> [ child node definitions...]
> };
>
--
Nicolas Ferre
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-12-19 8:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-17 9:36 [PATCH] mmc: atmel-mci: document clock properties Boris BREZILLON
2013-12-19 8:04 ` Ludovic Desroches
2013-12-19 8:45 ` Nicolas Ferre
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).