Re: [PATCH v7 0/2] ARM: mach-moxart: add MOXA ART SoC support

2013-12-22 Thread Olof Johansson
On Thu, Dec 19, 2013 at 11:47:42AM +0100, Jonas Jensen wrote:
> The reason behind why fixed rate clock "ref12" couldn't be moved from
> .dtsi to .dts:
> 
> There was nothing else in "clocks { .. }", the entire block was then
> deleted from .dtsi.
> 
> If a skeleton "clocks { .. }" remain in .dtsi, the node can then be
> moved to .dts, and of_clk_get() works again.
> 
> Changes since v6:
> 
> 1. move fixed rate clock "ref12" from .dtsi to .dts
> 2. sort new entry alphabetically in arch/arm/Kconfig
> 3. rebase to next-20131219: arch/arm/Makefile arch/arm/Kconfig
> 
> Applies to next-20131219
> 
> Jonas Jensen (2):
>   ARM: mach-moxart: add MOXA ART SoC platform files
>   ARM: mach-moxart: add MOXA ART SoC device tree files

Please just send an incremental patch to fixup, I'm not going to rebuild
branches yet again because of a third version within a few hours when I've
already applied and dropped twice. :)

-Olof
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH v7 0/2] ARM: mach-moxart: add MOXA ART SoC support

2013-12-22 Thread Olof Johansson
On Thu, Dec 19, 2013 at 11:47:42AM +0100, Jonas Jensen wrote:
 The reason behind why fixed rate clock ref12 couldn't be moved from
 .dtsi to .dts:
 
 There was nothing else in clocks { .. }, the entire block was then
 deleted from .dtsi.
 
 If a skeleton clocks { .. } remain in .dtsi, the node can then be
 moved to .dts, and of_clk_get() works again.
 
 Changes since v6:
 
 1. move fixed rate clock ref12 from .dtsi to .dts
 2. sort new entry alphabetically in arch/arm/Kconfig
 3. rebase to next-20131219: arch/arm/Makefile arch/arm/Kconfig
 
 Applies to next-20131219
 
 Jonas Jensen (2):
   ARM: mach-moxart: add MOXA ART SoC platform files
   ARM: mach-moxart: add MOXA ART SoC device tree files

Please just send an incremental patch to fixup, I'm not going to rebuild
branches yet again because of a third version within a few hours when I've
already applied and dropped twice. :)

-Olof
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH v7 0/2] ARM: mach-moxart: add MOXA ART SoC support

2013-12-19 Thread Jonas Jensen
The reason behind why fixed rate clock "ref12" couldn't be moved from
.dtsi to .dts:

There was nothing else in "clocks { .. }", the entire block was then
deleted from .dtsi.

If a skeleton "clocks { .. }" remain in .dtsi, the node can then be
moved to .dts, and of_clk_get() works again.

Changes since v6:

1. move fixed rate clock "ref12" from .dtsi to .dts
2. sort new entry alphabetically in arch/arm/Kconfig
3. rebase to next-20131219: arch/arm/Makefile arch/arm/Kconfig

Applies to next-20131219

Jonas Jensen (2):
  ARM: mach-moxart: add MOXA ART SoC platform files
  ARM: mach-moxart: add MOXA ART SoC device tree files

 Documentation/devicetree/bindings/arm/moxart.txt |  12 ++
 arch/arm/Kconfig |   2 +
 arch/arm/Makefile|   1 +
 arch/arm/boot/dts/Makefile   |   1 +
 arch/arm/boot/dts/moxart-uc7112lx.dts| 117 ++
 arch/arm/boot/dts/moxart.dtsi| 148 ++
 arch/arm/configs/moxart_defconfig| 149 +++
 arch/arm/mach-moxart/Kconfig |  31 +
 arch/arm/mach-moxart/Makefile|   3 +
 arch/arm/mach-moxart/moxart.c|  15 +++
 10 files changed, 479 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/arm/moxart.txt
 create mode 100644 arch/arm/boot/dts/moxart-uc7112lx.dts
 create mode 100644 arch/arm/boot/dts/moxart.dtsi
 create mode 100644 arch/arm/configs/moxart_defconfig
 create mode 100644 arch/arm/mach-moxart/Kconfig
 create mode 100644 arch/arm/mach-moxart/Makefile
 create mode 100644 arch/arm/mach-moxart/moxart.c

-- 
1.8.2.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH v7 0/2] ARM: mach-moxart: add MOXA ART SoC support

2013-12-19 Thread Jonas Jensen
The reason behind why fixed rate clock ref12 couldn't be moved from
.dtsi to .dts:

There was nothing else in clocks { .. }, the entire block was then
deleted from .dtsi.

If a skeleton clocks { .. } remain in .dtsi, the node can then be
moved to .dts, and of_clk_get() works again.

Changes since v6:

1. move fixed rate clock ref12 from .dtsi to .dts
2. sort new entry alphabetically in arch/arm/Kconfig
3. rebase to next-20131219: arch/arm/Makefile arch/arm/Kconfig

Applies to next-20131219

Jonas Jensen (2):
  ARM: mach-moxart: add MOXA ART SoC platform files
  ARM: mach-moxart: add MOXA ART SoC device tree files

 Documentation/devicetree/bindings/arm/moxart.txt |  12 ++
 arch/arm/Kconfig |   2 +
 arch/arm/Makefile|   1 +
 arch/arm/boot/dts/Makefile   |   1 +
 arch/arm/boot/dts/moxart-uc7112lx.dts| 117 ++
 arch/arm/boot/dts/moxart.dtsi| 148 ++
 arch/arm/configs/moxart_defconfig| 149 +++
 arch/arm/mach-moxart/Kconfig |  31 +
 arch/arm/mach-moxart/Makefile|   3 +
 arch/arm/mach-moxart/moxart.c|  15 +++
 10 files changed, 479 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/arm/moxart.txt
 create mode 100644 arch/arm/boot/dts/moxart-uc7112lx.dts
 create mode 100644 arch/arm/boot/dts/moxart.dtsi
 create mode 100644 arch/arm/configs/moxart_defconfig
 create mode 100644 arch/arm/mach-moxart/Kconfig
 create mode 100644 arch/arm/mach-moxart/Makefile
 create mode 100644 arch/arm/mach-moxart/moxart.c

-- 
1.8.2.1

--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/