linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] ARM: tegra: Fix build error for gic update
@ 2013-02-04 11:08 Hiroshi Doyu
  2013-02-04 11:08 ` [PATCH 2/2] regmap: Fix build error next-20130204 Hiroshi Doyu
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Hiroshi Doyu @ 2013-02-04 11:08 UTC (permalink / raw)
  To: linux-arm-kernel

Fix build error in board-dt-tegra114.c(next-20130204)

Signed-off-by: Hiroshi Doyu <hdoyu@nvidia.com>
Reported-by: Sami Liedes<sliedes@nvidia.com>
---
 arch/arm/mach-tegra/board-dt-tegra114.c |    2 --
 1 file changed, 2 deletions(-)

diff --git a/arch/arm/mach-tegra/board-dt-tegra114.c b/arch/arm/mach-tegra/board-dt-tegra114.c
index 3ed17ce..72598e2 100644
--- a/arch/arm/mach-tegra/board-dt-tegra114.c
+++ b/arch/arm/mach-tegra/board-dt-tegra114.c
@@ -19,7 +19,6 @@
 #include <linux/clocksource.h>
 
 #include <asm/mach/arch.h>
-#include <asm/hardware/gic.h>
 
 #include "board.h"
 #include "common.h"
@@ -39,7 +38,6 @@ DT_MACHINE_START(TEGRA114_DT, "NVIDIA Tegra114 (Flattened Device Tree)")
 	.map_io		= tegra_map_common_io,
 	.init_early	= tegra30_init_early,
 	.init_irq	= tegra_dt_init_irq,
-	.handle_irq	= gic_handle_irq,
 	.init_time	= clocksource_of_init,
 	.init_machine	= tegra114_dt_init,
 	.init_late	= tegra_init_late,
-- 
1.7.9.5

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

* [PATCH 2/2] regmap: Fix build error next-20130204
  2013-02-04 11:08 [PATCH 1/2] ARM: tegra: Fix build error for gic update Hiroshi Doyu
@ 2013-02-04 11:08 ` Hiroshi Doyu
  2013-02-04 17:01 ` [PATCH 1/2] ARM: tegra: Fix build error for gic update Stephen Warren
  2013-02-05 21:24 ` Olof Johansson
  2 siblings, 0 replies; 5+ messages in thread
From: Hiroshi Doyu @ 2013-02-04 11:08 UTC (permalink / raw)
  To: linux-arm-kernel

In function 'regmap_async_complete_cb':
1656:3: error: 'TASK_NORMAL' undeclared (first use in this function)
In function 'regmap_async_complete':
1688:2: error: 'TASK_UNINTERRUPTIBLE' undeclared (first use in this function)

Signed-off-by: Hiroshi Doyu <hdoyu@nvidia.com>
---
 drivers/base/regmap/regmap.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/base/regmap/regmap.c b/drivers/base/regmap/regmap.c
index bee8560..49ec460 100644
--- a/drivers/base/regmap/regmap.c
+++ b/drivers/base/regmap/regmap.c
@@ -16,6 +16,8 @@
 #include <linux/mutex.h>
 #include <linux/err.h>
 #include <linux/rbtree.h>
+#include <linux/sched.h>
+#include <linux/wait.h>
 
 #define CREATE_TRACE_POINTS
 #include <trace/events/regmap.h>
-- 
1.7.9.5

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

* [PATCH 1/2] ARM: tegra: Fix build error for gic update
  2013-02-04 11:08 [PATCH 1/2] ARM: tegra: Fix build error for gic update Hiroshi Doyu
  2013-02-04 11:08 ` [PATCH 2/2] regmap: Fix build error next-20130204 Hiroshi Doyu
@ 2013-02-04 17:01 ` Stephen Warren
  2013-02-04 17:31   ` Hiroshi Doyu
  2013-02-05 21:24 ` Olof Johansson
  2 siblings, 1 reply; 5+ messages in thread
From: Stephen Warren @ 2013-02-04 17:01 UTC (permalink / raw)
  To: linux-arm-kernel

On 02/04/2013 04:08 AM, Hiroshi Doyu wrote:
> Fix build error in board-dt-tegra114.c(next-20130204)

Hiroshi, which tree should this patch be applied to? I assume it needs
to go through arm-soc since that's where the Tegra and GIC patches meet?

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

* [PATCH 1/2] ARM: tegra: Fix build error for gic update
  2013-02-04 17:01 ` [PATCH 1/2] ARM: tegra: Fix build error for gic update Stephen Warren
@ 2013-02-04 17:31   ` Hiroshi Doyu
  0 siblings, 0 replies; 5+ messages in thread
From: Hiroshi Doyu @ 2013-02-04 17:31 UTC (permalink / raw)
  To: linux-arm-kernel

Stephen Warren <swarren@wwwdotorg.org> wrote @ Mon, 4 Feb 2013 18:01:15 +0100:

> On 02/04/2013 04:08 AM, Hiroshi Doyu wrote:
> > Fix build error in board-dt-tegra114.c(next-20130204)
> 
> Hiroshi, which tree should this patch be applied to? I assume it needs
> to go through arm-soc since that's where the Tegra and GIC patches meet?

"arm-soc" would be the place. Can you take care of this?

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

* [PATCH 1/2] ARM: tegra: Fix build error for gic update
  2013-02-04 11:08 [PATCH 1/2] ARM: tegra: Fix build error for gic update Hiroshi Doyu
  2013-02-04 11:08 ` [PATCH 2/2] regmap: Fix build error next-20130204 Hiroshi Doyu
  2013-02-04 17:01 ` [PATCH 1/2] ARM: tegra: Fix build error for gic update Stephen Warren
@ 2013-02-05 21:24 ` Olof Johansson
  2 siblings, 0 replies; 5+ messages in thread
From: Olof Johansson @ 2013-02-05 21:24 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Feb 04, 2013 at 01:08:18PM +0200, Hiroshi Doyu wrote:
> Fix build error in board-dt-tegra114.c(next-20130204)
> 
> Signed-off-by: Hiroshi Doyu <hdoyu@nvidia.com>
> Reported-by: Sami Liedes<sliedes@nvidia.com>

Applied to arm-soc next/soc, after t114 support.


-Olof

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

end of thread, other threads:[~2013-02-05 21:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-04 11:08 [PATCH 1/2] ARM: tegra: Fix build error for gic update Hiroshi Doyu
2013-02-04 11:08 ` [PATCH 2/2] regmap: Fix build error next-20130204 Hiroshi Doyu
2013-02-04 17:01 ` [PATCH 1/2] ARM: tegra: Fix build error for gic update Stephen Warren
2013-02-04 17:31   ` Hiroshi Doyu
2013-02-05 21:24 ` 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).