linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] ARM: tegra: fix invalid unit-address in tegra*.dtsi
@ 2012-10-02 19:10 Stephen Warren
  2012-10-02 19:10 ` [PATCH 2/2] ARM: tegra: remove "Tegra board type" comment from Kconfig Stephen Warren
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Stephen Warren @ 2012-10-02 19:10 UTC (permalink / raw)
  To: linux-arm-kernel

From: Stephen Warren <swarren@nvidia.com>

Unit addresses, whilst written in hex, don't contain a 0x prefix.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
---
A couple of small cleanups/tweaks for 3.7 if possible.

 arch/arm/boot/dts/tegra20-seaboard.dts |    2 +-
 arch/arm/boot/dts/tegra20.dtsi         |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm/boot/dts/tegra20-seaboard.dts b/arch/arm/boot/dts/tegra20-seaboard.dts
index e60dc71..f0ba901 100644
--- a/arch/arm/boot/dts/tegra20-seaboard.dts
+++ b/arch/arm/boot/dts/tegra20-seaboard.dts
@@ -539,7 +539,7 @@
 		nvidia,invert-interrupt;
 	};
 
-	memory-controller at 0x7000f400 {
+	memory-controller at 7000f400 {
 		emc-table at 190000 {
 			reg = <190000>;
 			compatible = "nvidia,tegra20-emc-table";
diff --git a/arch/arm/boot/dts/tegra20.dtsi b/arch/arm/boot/dts/tegra20.dtsi
index 67a6cd9..f3a09d0 100644
--- a/arch/arm/boot/dts/tegra20.dtsi
+++ b/arch/arm/boot/dts/tegra20.dtsi
@@ -170,7 +170,7 @@
 		reg = <0x7000e400 0x400>;
 	};
 
-	memory-controller at 0x7000f000 {
+	memory-controller at 7000f000 {
 		compatible = "nvidia,tegra20-mc";
 		reg = <0x7000f000 0x024
 		       0x7000f03c 0x3c4>;
@@ -183,7 +183,7 @@
 		       0x58000000 0x02000000>;	/* GART aperture */
 	};
 
-	memory-controller at 0x7000f400 {
+	memory-controller at 7000f400 {
 		compatible = "nvidia,tegra20-emc";
 		reg = <0x7000f400 0x200>;
 		#address-cells = <1>;
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] ARM: tegra: remove "Tegra board type" comment from Kconfig
  2012-10-02 19:10 [PATCH 1/2] ARM: tegra: fix invalid unit-address in tegra*.dtsi Stephen Warren
@ 2012-10-02 19:10 ` Stephen Warren
  2012-10-02 20:03 ` [PATCH 1/2] ARM: tegra: fix invalid unit-address in tegra*.dtsi Thierry Reding
  2012-10-07 14:06 ` Olof Johansson
  2 siblings, 0 replies; 4+ messages in thread
From: Stephen Warren @ 2012-10-02 19:10 UTC (permalink / raw)
  To: linux-arm-kernel

From: Stephen Warren <swarren@nvidia.com>

Since the complete conversion to device tree, there are no board-
specific Kconfig options left, so remove the useless Kconfig entry.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
---
 arch/arm/mach-tegra/Kconfig |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-tegra/Kconfig b/arch/arm/mach-tegra/Kconfig
index 5f3c03b..1219d87 100644
--- a/arch/arm/mach-tegra/Kconfig
+++ b/arch/arm/mach-tegra/Kconfig
@@ -57,8 +57,6 @@ config TEGRA_AHB
 	  which controls AHB bus master arbitration and some
 	  perfomance parameters(priority, prefech size).
 
-comment "Tegra board type"
-
 choice
         prompt "Default low-level debug console UART"
         default TEGRA_DEBUG_UART_NONE
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 1/2] ARM: tegra: fix invalid unit-address in tegra*.dtsi
  2012-10-02 19:10 [PATCH 1/2] ARM: tegra: fix invalid unit-address in tegra*.dtsi Stephen Warren
  2012-10-02 19:10 ` [PATCH 2/2] ARM: tegra: remove "Tegra board type" comment from Kconfig Stephen Warren
@ 2012-10-02 20:03 ` Thierry Reding
  2012-10-07 14:06 ` Olof Johansson
  2 siblings, 0 replies; 4+ messages in thread
From: Thierry Reding @ 2012-10-02 20:03 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Oct 02, 2012 at 01:10:47PM -0600, Stephen Warren wrote:
> From: Stephen Warren <swarren@nvidia.com>
> 
> Unit addresses, whilst written in hex, don't contain a 0x prefix.
> 
> Signed-off-by: Stephen Warren <swarren@nvidia.com>
> ---
> A couple of small cleanups/tweaks for 3.7 if possible.
> 
>  arch/arm/boot/dts/tegra20-seaboard.dts |    2 +-
>  arch/arm/boot/dts/tegra20.dtsi         |    4 ++--
>  2 files changed, 3 insertions(+), 3 deletions(-)

Both patches,

Reviewed-by: Thierry Reding <thierry.reding@avionic-design.de>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20121002/5290df07/attachment.sig>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2] ARM: tegra: fix invalid unit-address in tegra*.dtsi
  2012-10-02 19:10 [PATCH 1/2] ARM: tegra: fix invalid unit-address in tegra*.dtsi Stephen Warren
  2012-10-02 19:10 ` [PATCH 2/2] ARM: tegra: remove "Tegra board type" comment from Kconfig Stephen Warren
  2012-10-02 20:03 ` [PATCH 1/2] ARM: tegra: fix invalid unit-address in tegra*.dtsi Thierry Reding
@ 2012-10-07 14:06 ` Olof Johansson
  2 siblings, 0 replies; 4+ messages in thread
From: Olof Johansson @ 2012-10-07 14:06 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Oct 02, 2012 at 01:10:47PM -0600, Stephen Warren wrote:
> From: Stephen Warren <swarren@nvidia.com>
> 
> Unit addresses, whilst written in hex, don't contain a 0x prefix.
> 
> Signed-off-by: Stephen Warren <swarren@nvidia.com>
> ---
> A couple of small cleanups/tweaks for 3.7 if possible.

Applied 1-2 to fixes.


-Olof

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-10-07 14:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-02 19:10 [PATCH 1/2] ARM: tegra: fix invalid unit-address in tegra*.dtsi Stephen Warren
2012-10-02 19:10 ` [PATCH 2/2] ARM: tegra: remove "Tegra board type" comment from Kconfig Stephen Warren
2012-10-02 20:03 ` [PATCH 1/2] ARM: tegra: fix invalid unit-address in tegra*.dtsi Thierry Reding
2012-10-07 14:06 ` Olof Johansson

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).