From: Kukjin Kim <kgene.kim@samsung.com>
To: 'Thomas Abraham' <thomas.abraham@linaro.org>,
linux-samsung-soc@vger.kernel.org
Cc: linux-arm-kernel@lists.infradead.org, tobetter@gmail.com,
tgih.jun@samsung.com, jh80.chung@samsung.com
Subject: RE: [PATCH] ARM: dts: add mshc controller node for Exynos4x12 SoCs
Date: Mon, 04 Feb 2013 16:21:58 -0800 [thread overview]
Message-ID: <121c01ce0336$d0c74280$7255c780$@samsung.com> (raw)
In-Reply-To: <1358764755-21470-1-git-send-email-thomas.abraham@linaro.org>
Thomas Abraham wrote:
>
> Commit cea0f256 ("ARM: dts: Add board dts file for ODROID-X") includes a
> node
> to describe the board level properties for mshc controller. But the mshc
> controller node was not added in the Exynos4x12 dtsi file which resulted
> in the following warning when compiling the dtb files.
>
> Warning (reg_format): "reg" property in /mshc@12550000/slot@0 has invalid
> length (4 bytes) (#address-cells == 2, #size-cells == 1)
> Warning (avoid_default_addr_size): Relying on default #address-cells value
> for /mshc@12550000/slot@0
> Warning (avoid_default_addr_size): Relying on default #size-cells value
for
> /mshc@12550000/slot@0
>
> Fix this by adding the mshc controller node for Exynos4x12 SoCs.
>
> Cc: Dongjin Kim <tobetter@gmail.com>
> Cc: Kukjin Kim <kgene.kim@samsung.com>
> Signed-off-by: Thomas Abraham <thomas.abraham@linaro.org>
> ---
> arch/arm/boot/dts/exynos4412.dtsi | 8 ++++++++
> 1 files changed, 8 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/boot/dts/exynos4412.dtsi
> b/arch/arm/boot/dts/exynos4412.dtsi
> index 78ed377..96f5b66 100644
> --- a/arch/arm/boot/dts/exynos4412.dtsi
> +++ b/arch/arm/boot/dts/exynos4412.dtsi
> @@ -32,4 +32,12 @@
> interrupts = <0 57 0>, <0 0 0>, <0 0 0>, <0 0 0>,
> <1 12 0>, <1 12 0>, <1 12 0>, <1 12 0>;
> };
> +
> + mshc@12550000 {
> + compatible = "samsung,exynos4412-dw-mshc";
> + reg = <0x12550000 0x1000>;
> + interrupts = <0 77 0>;
> + #address-cells = <1>;
> + #size-cells = <0>;
> + };
> };
> --
> 1.7.5.4
Looks good to me, applied with "Tested-by: Dongjin Kim <tobetter@gmail.com>"
Thanks.
- Kukjin
WARNING: multiple messages have this Message-ID (diff)
From: kgene.kim@samsung.com (Kukjin Kim)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] ARM: dts: add mshc controller node for Exynos4x12 SoCs
Date: Mon, 04 Feb 2013 16:21:58 -0800 [thread overview]
Message-ID: <121c01ce0336$d0c74280$7255c780$@samsung.com> (raw)
In-Reply-To: <1358764755-21470-1-git-send-email-thomas.abraham@linaro.org>
Thomas Abraham wrote:
>
> Commit cea0f256 ("ARM: dts: Add board dts file for ODROID-X") includes a
> node
> to describe the board level properties for mshc controller. But the mshc
> controller node was not added in the Exynos4x12 dtsi file which resulted
> in the following warning when compiling the dtb files.
>
> Warning (reg_format): "reg" property in /mshc at 12550000/slot at 0 has invalid
> length (4 bytes) (#address-cells == 2, #size-cells == 1)
> Warning (avoid_default_addr_size): Relying on default #address-cells value
> for /mshc at 12550000/slot at 0
> Warning (avoid_default_addr_size): Relying on default #size-cells value
for
> /mshc at 12550000/slot at 0
>
> Fix this by adding the mshc controller node for Exynos4x12 SoCs.
>
> Cc: Dongjin Kim <tobetter@gmail.com>
> Cc: Kukjin Kim <kgene.kim@samsung.com>
> Signed-off-by: Thomas Abraham <thomas.abraham@linaro.org>
> ---
> arch/arm/boot/dts/exynos4412.dtsi | 8 ++++++++
> 1 files changed, 8 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/boot/dts/exynos4412.dtsi
> b/arch/arm/boot/dts/exynos4412.dtsi
> index 78ed377..96f5b66 100644
> --- a/arch/arm/boot/dts/exynos4412.dtsi
> +++ b/arch/arm/boot/dts/exynos4412.dtsi
> @@ -32,4 +32,12 @@
> interrupts = <0 57 0>, <0 0 0>, <0 0 0>, <0 0 0>,
> <1 12 0>, <1 12 0>, <1 12 0>, <1 12 0>;
> };
> +
> + mshc at 12550000 {
> + compatible = "samsung,exynos4412-dw-mshc";
> + reg = <0x12550000 0x1000>;
> + interrupts = <0 77 0>;
> + #address-cells = <1>;
> + #size-cells = <0>;
> + };
> };
> --
> 1.7.5.4
Looks good to me, applied with "Tested-by: Dongjin Kim <tobetter@gmail.com>"
Thanks.
- Kukjin
next prev parent reply other threads:[~2013-02-05 0:22 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-21 10:39 [PATCH] ARM: dts: add mshc controller node for Exynos4x12 SoCs Thomas Abraham
2013-01-21 10:39 ` Thomas Abraham
2013-01-22 18:15 ` Dongjin Kim
2013-01-22 18:15 ` Dongjin Kim
2013-01-22 23:25 ` Thomas Abraham
2013-01-22 23:25 ` Thomas Abraham
2013-01-23 5:21 ` Dongjin Kim
2013-01-23 5:21 ` Dongjin Kim
2013-01-23 15:36 ` Dongjin Kim
2013-01-23 15:36 ` Dongjin Kim
2013-02-05 0:21 ` Kukjin Kim [this message]
2013-02-05 0:21 ` Kukjin Kim
2013-12-20 12:34 ` [PATCH] ARM: dts: add clock provider for mshc node for Exynos4412 SOC Seungwon Jeon
2013-12-20 12:34 ` Seungwon Jeon
2013-12-20 20:44 ` Kukjin Kim
2013-12-20 20:44 ` Kukjin Kim
2013-12-20 21:08 ` Tomasz Figa
2013-12-20 21:08 ` Tomasz Figa
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='121c01ce0336$d0c74280$7255c780$@samsung.com' \
--to=kgene.kim@samsung.com \
--cc=jh80.chung@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=tgih.jun@samsung.com \
--cc=thomas.abraham@linaro.org \
--cc=tobetter@gmail.com \
/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.