* [PATCH 0/9] fixes for ARM build regressions in 3.9-rc1
@ 2013-03-05 22:16 Arnd Bergmann
2013-03-05 22:16 ` [PATCH 5/9] ARM: omap1: add back missing includes Arnd Bergmann
0 siblings, 1 reply; 6+ messages in thread
From: Arnd Bergmann @ 2013-03-05 22:16 UTC (permalink / raw)
To: linux-kernel
Cc: linux-arm-kernel, arm, Arnd Bergmann, Andrew Morton,
Bill Pemberton, Felipe Balbi, Greg Kroah-Hartman, Joerg Roedel,
Kukjin Kim, Mauro Carvalho Chehab, Mike Turquette, Tony Lindgren,
Tony Prisk, Viresh Kumar, iommu, linux-media, linux-omap
This is the result of my my build tests on 3.9-rc1, mostly bugs
that I had not caught before the merge window, or where the fix
for some reason has not yet made it in.
I hope the subsystem maintainers can take care of applying these,
for the arch/arm/mach-* patches I can either apply them directly
to the arm-soc tree with an Ack or do a round-trip through
the platform maintainer tree. I think Tony already has some of
the OMAP1 fixes, so we should try not to duplicate them.
Arnd
Arnd Bergmann (9):
clk: vt8500: Fix "fix device clock divisor calculations"
Revert parts of "hlist: drop the node parameter from iterators"
mfd: remove __exit_p annotation for twl4030_madc_remove
usb: gadget: fix omap_udc build errors
ARM: omap1: add back missing includes
[media] ir-rx51: fix clock API related build issues
[media] s5p-fimc: fix s5pv210 build
iommu: OMAP: build only on OMAP2+
ARM: spear3xx: Use correct pl080 header file
arch/arm/mach-omap1/board-fsample.c | 1 +
arch/arm/mach-omap1/board-h2.c | 1 +
arch/arm/mach-omap1/board-perseus2.c | 1 +
arch/arm/mach-omap1/board-sx1.c | 1 +
arch/arm/mach-s5pv210/mach-goni.c | 2 +-
arch/arm/mach-spear3xx/spear3xx.c | 2 +-
arch/arm/plat-omap/dmtimer.c | 16 ++++++++--------
drivers/clk/clk-vt8500.c | 2 +-
drivers/iommu/Kconfig | 2 +-
drivers/media/rc/ir-rx51.c | 4 ++--
drivers/mfd/twl4030-madc.c | 2 +-
drivers/usb/gadget/omap_udc.c | 3 ++-
drivers/video/omap/lcd_ams_delta.c | 1 +
drivers/video/omap/lcd_osk.c | 1 +
kernel/smpboot.c | 2 +-
net/9p/trans_virtio.c | 2 +-
16 files changed, 25 insertions(+), 18 deletions(-)
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Bill Pemberton <wfp5p@virginia.edu>
Cc: Felipe Balbi <balbi@ti.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Joerg Roedel <joro@8bytes.org>
Cc: Kukjin Kim <kgene.kim@samsung.com>
Cc: Mauro Carvalho Chehab <mchehab@redhat.com>
Cc: Mike Turquette <mturquette@linaro.org>
Cc: Tony Lindgren <tony@atomide.com>
Cc: Tony Prisk <linux@prisktech.co.nz>
Cc: Viresh Kumar <viresh.kumar@linaro.org>
Cc: iommu@lists.linux-foundation.org
Cc: linux-media@vger.kernel.org
Cc: linux-omap@vger.kernel.org
--
1.8.1.2
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 5/9] ARM: omap1: add back missing includes
2013-03-05 22:16 [PATCH 0/9] fixes for ARM build regressions in 3.9-rc1 Arnd Bergmann
@ 2013-03-05 22:16 ` Arnd Bergmann
2013-03-05 22:27 ` Arnd Bergmann
0 siblings, 1 reply; 6+ messages in thread
From: Arnd Bergmann @ 2013-03-05 22:16 UTC (permalink / raw)
To: linux-kernel
Cc: linux-arm-kernel, arm, Arnd Bergmann, Tony Lindgren, linux-omap
The recent reorganization of OMAP header files caused a couple of
files that used to be implicitly included now missing from OMAP1.
This adds explicit inclusions of mach/irqs.h and mach/hardware.h
in all files that need them for an OMAP1 allyesconfig build.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Tony Lindgren <tony@atomide.com>
Cc: linux-omap@vger.kernel.org
---
arch/arm/mach-omap1/board-fsample.c | 1 +
arch/arm/mach-omap1/board-h2.c | 1 +
arch/arm/mach-omap1/board-perseus2.c | 1 +
arch/arm/mach-omap1/board-sx1.c | 1 +
drivers/video/omap/lcd_ams_delta.c | 1 +
drivers/video/omap/lcd_osk.c | 1 +
6 files changed, 6 insertions(+)
diff --git a/arch/arm/mach-omap1/board-fsample.c b/arch/arm/mach-omap1/board-fsample.c
index 702d580..512b33a 100644
--- a/arch/arm/mach-omap1/board-fsample.c
+++ b/arch/arm/mach-omap1/board-fsample.c
@@ -33,6 +33,7 @@
#include <linux/platform_data/keypad-omap.h>
#include <mach/hardware.h>
+#include <mach/irqs.h>
#include "iomap.h"
#include "common.h"
diff --git a/arch/arm/mach-omap1/board-h2.c b/arch/arm/mach-omap1/board-h2.c
index 0dac3d2..99ee4d7 100644
--- a/arch/arm/mach-omap1/board-h2.c
+++ b/arch/arm/mach-omap1/board-h2.c
@@ -47,6 +47,7 @@
#include <mach/hardware.h>
#include <mach/usb.h>
+#include <mach/irqs.h>
#include "common.h"
#include "board-h2.h"
diff --git a/arch/arm/mach-omap1/board-perseus2.c b/arch/arm/mach-omap1/board-perseus2.c
index 8b2f712..403efcc 100644
--- a/arch/arm/mach-omap1/board-perseus2.c
+++ b/arch/arm/mach-omap1/board-perseus2.c
@@ -31,6 +31,7 @@
#include <mach/tc.h>
#include <mach/mux.h>
#include <mach/flash.h>
+#include <mach/irqs.h>
#include <mach/hardware.h>
diff --git a/arch/arm/mach-omap1/board-sx1.c b/arch/arm/mach-omap1/board-sx1.c
index 9732a98..b31e77c 100644
--- a/arch/arm/mach-omap1/board-sx1.c
+++ b/arch/arm/mach-omap1/board-sx1.c
@@ -43,6 +43,7 @@
#include <mach/hardware.h>
#include <mach/usb.h>
+#include <mach/irqs.h>
#include "common.h"
#include "dma.h"
diff --git a/drivers/video/omap/lcd_ams_delta.c b/drivers/video/omap/lcd_ams_delta.c
index ed4cad8..7539276 100644
--- a/drivers/video/omap/lcd_ams_delta.c
+++ b/drivers/video/omap/lcd_ams_delta.c
@@ -28,6 +28,7 @@
#include <linux/gpio.h>
#include <mach/board-ams-delta.h>
+#include <mach/hardware.h>
#include "omapfb.h"
diff --git a/drivers/video/omap/lcd_osk.c b/drivers/video/omap/lcd_osk.c
index 3aa62da..cad2338 100644
--- a/drivers/video/omap/lcd_osk.c
+++ b/drivers/video/omap/lcd_osk.c
@@ -25,6 +25,7 @@
#include <asm/gpio.h>
#include <mach/mux.h>
+#include <mach/hardware.h>
#include "omapfb.h"
static int osk_panel_init(struct lcd_panel *panel, struct omapfb_device *fbdev)
--
1.8.1.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 5/9] ARM: omap1: add back missing includes
2013-03-05 22:16 ` [PATCH 5/9] ARM: omap1: add back missing includes Arnd Bergmann
@ 2013-03-05 22:27 ` Arnd Bergmann
2013-03-06 0:59 ` Tony Lindgren
0 siblings, 1 reply; 6+ messages in thread
From: Arnd Bergmann @ 2013-03-05 22:27 UTC (permalink / raw)
To: linux-kernel; +Cc: linux-arm-kernel, arm, Tony Lindgren, linux-omap
On Tuesday 05 March 2013, Arnd Bergmann wrote:
> The recent reorganization of OMAP header files caused a couple of
> files that used to be implicitly included now missing from OMAP1.
> This adds explicit inclusions of mach/irqs.h and mach/hardware.h
> in all files that need them for an OMAP1 allyesconfig build.
>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> Cc: Tony Lindgren <tony@atomide.com>
> Cc: linux-omap@vger.kernel.org
> ---
> arch/arm/mach-omap1/board-fsample.c | 1 +
> arch/arm/mach-omap1/board-h2.c | 1 +
> arch/arm/mach-omap1/board-perseus2.c | 1 +
> arch/arm/mach-omap1/board-sx1.c | 1 +
> drivers/video/omap/lcd_ams_delta.c | 1 +
> drivers/video/omap/lcd_osk.c | 1 +
> 6 files changed, 6 insertions(+)
I saw that Tony has already addressed the latter two changes, but
did not see a fix for the four board files.
Arnd
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 5/9] ARM: omap1: add back missing includes
2013-03-05 22:27 ` Arnd Bergmann
@ 2013-03-06 0:59 ` Tony Lindgren
2013-03-06 11:23 ` Arnd Bergmann
0 siblings, 1 reply; 6+ messages in thread
From: Tony Lindgren @ 2013-03-06 0:59 UTC (permalink / raw)
To: Arnd Bergmann; +Cc: linux-kernel, linux-arm-kernel, arm, linux-omap
* Arnd Bergmann <arnd@arndb.de> [130305 14:31]:
> On Tuesday 05 March 2013, Arnd Bergmann wrote:
> > The recent reorganization of OMAP header files caused a couple of
> > files that used to be implicitly included now missing from OMAP1.
> > This adds explicit inclusions of mach/irqs.h and mach/hardware.h
> > in all files that need them for an OMAP1 allyesconfig build.
> >
> > Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> > Cc: Tony Lindgren <tony@atomide.com>
> > Cc: linux-omap@vger.kernel.org
> > ---
> > arch/arm/mach-omap1/board-fsample.c | 1 +
> > arch/arm/mach-omap1/board-h2.c | 1 +
> > arch/arm/mach-omap1/board-perseus2.c | 1 +
> > arch/arm/mach-omap1/board-sx1.c | 1 +
> > drivers/video/omap/lcd_ams_delta.c | 1 +
> > drivers/video/omap/lcd_osk.c | 1 +
> > 6 files changed, 6 insertions(+)
>
> I saw that Tony has already addressed the latter two changes, but
> did not see a fix for the four board files.
Hmm I wonder why I have not seen the board-*.c related ones?
Anyways thanks for fixing those:
Acked-by: Tony Lindgren <tony@atomide.com>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 5/9] ARM: omap1: add back missing includes
2013-03-06 0:59 ` Tony Lindgren
@ 2013-03-06 11:23 ` Arnd Bergmann
2013-03-06 17:44 ` Tony Lindgren
0 siblings, 1 reply; 6+ messages in thread
From: Arnd Bergmann @ 2013-03-06 11:23 UTC (permalink / raw)
To: Tony Lindgren; +Cc: linux-kernel, linux-arm-kernel, arm, linux-omap
On Wednesday 06 March 2013, Tony Lindgren wrote:
> * Arnd Bergmann <arnd@arndb.de> [130305 14:31]:
> > On Tuesday 05 March 2013, Arnd Bergmann wrote:
> > > The recent reorganization of OMAP header files caused a couple of
> > > files that used to be implicitly included now missing from OMAP1.
> > > This adds explicit inclusions of mach/irqs.h and mach/hardware.h
> > > in all files that need them for an OMAP1 allyesconfig build.
> > >
> > > Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> > > Cc: Tony Lindgren <tony@atomide.com>
> > > Cc: linux-omap@vger.kernel.org
> > > ---
> > > arch/arm/mach-omap1/board-fsample.c | 1 +
> > > arch/arm/mach-omap1/board-h2.c | 1 +
> > > arch/arm/mach-omap1/board-perseus2.c | 1 +
> > > arch/arm/mach-omap1/board-sx1.c | 1 +
> > > drivers/video/omap/lcd_ams_delta.c | 1 +
> > > drivers/video/omap/lcd_osk.c | 1 +
> > > 6 files changed, 6 insertions(+)
> >
> > I saw that Tony has already addressed the latter two changes, but
> > did not see a fix for the four board files.
>
> Hmm I wonder why I have not seen the board-*.c related ones?
>
> Anyways thanks for fixing those:
>
> Acked-by: Tony Lindgren <tony@atomide.com>
Actually I cannot reproduce them myself now, I think I'll just drop
the patch for now, but will remember your Ack if the problem comes
back. The patch would be needed if we decide to use SPARSE_IRQ on
OMAP1.
Arnd
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 5/9] ARM: omap1: add back missing includes
2013-03-06 11:23 ` Arnd Bergmann
@ 2013-03-06 17:44 ` Tony Lindgren
0 siblings, 0 replies; 6+ messages in thread
From: Tony Lindgren @ 2013-03-06 17:44 UTC (permalink / raw)
To: Arnd Bergmann; +Cc: linux-kernel, linux-arm-kernel, arm, linux-omap
* Arnd Bergmann <arnd@arndb.de> [130306 03:27]:
> On Wednesday 06 March 2013, Tony Lindgren wrote:
> > * Arnd Bergmann <arnd@arndb.de> [130305 14:31]:
> > > On Tuesday 05 March 2013, Arnd Bergmann wrote:
> > > > The recent reorganization of OMAP header files caused a couple of
> > > > files that used to be implicitly included now missing from OMAP1.
> > > > This adds explicit inclusions of mach/irqs.h and mach/hardware.h
> > > > in all files that need them for an OMAP1 allyesconfig build.
> > > >
> > > > Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> > > > Cc: Tony Lindgren <tony@atomide.com>
> > > > Cc: linux-omap@vger.kernel.org
> > > > ---
> > > > arch/arm/mach-omap1/board-fsample.c | 1 +
> > > > arch/arm/mach-omap1/board-h2.c | 1 +
> > > > arch/arm/mach-omap1/board-perseus2.c | 1 +
> > > > arch/arm/mach-omap1/board-sx1.c | 1 +
> > > > drivers/video/omap/lcd_ams_delta.c | 1 +
> > > > drivers/video/omap/lcd_osk.c | 1 +
> > > > 6 files changed, 6 insertions(+)
> > >
> > > I saw that Tony has already addressed the latter two changes, but
> > > did not see a fix for the four board files.
> >
> > Hmm I wonder why I have not seen the board-*.c related ones?
> >
> > Anyways thanks for fixing those:
> >
> > Acked-by: Tony Lindgren <tony@atomide.com>
>
> Actually I cannot reproduce them myself now, I think I'll just drop
> the patch for now, but will remember your Ack if the problem comes
> back. The patch would be needed if we decide to use SPARSE_IRQ on
> OMAP1.
OK sounds good to me.
Tony
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2013-03-06 17:44 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-05 22:16 [PATCH 0/9] fixes for ARM build regressions in 3.9-rc1 Arnd Bergmann
2013-03-05 22:16 ` [PATCH 5/9] ARM: omap1: add back missing includes Arnd Bergmann
2013-03-05 22:27 ` Arnd Bergmann
2013-03-06 0:59 ` Tony Lindgren
2013-03-06 11:23 ` Arnd Bergmann
2013-03-06 17:44 ` Tony Lindgren
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox