diff options
author | Gregory CLEMENT <gregory.clement@free-electrons.com> | 2015-04-14 12:50:13 +0300 |
---|---|---|
committer | Gregory CLEMENT <gregory.clement@free-electrons.com> | 2015-04-27 10:27:18 +0300 |
commit | 750e30d4076ae5e02ad13a376e96c95a2627742c (patch) | |
tree | 2b07dc32dd70a532d3a399af0bd36afda0d929a8 | |
parent | b787f68c36d49bb1d9236f403813641efa74a031 (diff) | |
download | linux-750e30d4076ae5e02ad13a376e96c95a2627742c.tar.xz |
ARM: mvebu: armada-xp-openblocks-ax3-4: Disable internal RTC
There is no crystal connected to the internal RTC on the Open Block
AX3. So let's disable it in order to prevent the kernel probing the
driver uselessly. Eventually this patches removes the following
warning message from the boot log:
"rtc-mv d0010300.rtc: internal RTC not ticking"
Acked-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Cc: <stable@vger.kernel.org> # v3.8 +
-rw-r--r-- | arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts b/arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts index e3b08fb959e5..990e8a2100f0 100644 --- a/arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts +++ b/arch/arm/boot/dts/armada-xp-openblocks-ax3-4.dts @@ -105,6 +105,10 @@ }; internal-regs { + rtc@10300 { + /* No crystal connected to the internal RTC */ + status = "disabled"; + }; serial@12000 { status = "okay"; }; |