* [PATCH 00/15] Linux-3.10 ARM randconfig fixes
@ 2013-05-31 22:22 Arnd Bergmann
2013-05-31 22:22 ` [PATCH 13/15] [media] omap3isp: include linux/mm_types.h Arnd Bergmann
0 siblings, 1 reply; 4+ messages in thread
From: Arnd Bergmann @ 2013-05-31 22:22 UTC (permalink / raw)
To: linux-kernel
Cc: patches, linux-arm-kernel, Arnd Bergmann, James E.J. Bottomley,
Artem Bityutskiy, Dave Airlie, David Woodhouse, Herbert Xu,
John W. Linville, Laurent Pinchart, Mauro Carvalho Chehab,
Rafael J. Wysocki, Rob Clark, Rob Herring, Russell King,
Stephen Warren, Thomas Gleixner, Viresh Kumar, cpufreq, dri-devel,
linux-media, linux-mtd, linux-pm, linux-rpi-kernel, linux-scsi
Hi subsystem maintainers,
These are a few patches left over from doing randconfig tests
a couple of weeks ago. Please apply them directly into your
trees unless you see problems. All patches can theoretically
be seen as bug fixes for 3.10, but they are not critical,
so applying them for 3.11 is fine as well.
Arnd
Arnd Bergmann (15):
irqdomain: export irq_domain_add_simple
mtd: omap2: allow bulding as a module
drm/nouveau: use mdelay instead of large udelay constants
[SCSI] nsp32: use mdelay instead of large udelay constants
hwrng: bcm2835: fix MODULE_LICENSE tag
cpuidle: calxeda: select ARM_CPU_SUSPEND
cpufreq: spear needs cpufreq table
thermal: cpu_cooling: fix stub function
drm: always provide debugfs function prototypes
drm/tilcd: select BACKLIGHT_LCD_SUPPORT
iwlegacy: il_pm_ops is only provided for PM_SLEEP
[media] davinci: vpfe_capture needs i2c
[media] omap3isp: include linux/mm_types.h
clk: tegra: provide tegra_periph_reset_assert alternative
OF: remove #ifdef from linux/of_platform.h
drivers/char/hw_random/bcm2835-rng.c | 2 +-
drivers/cpufreq/Kconfig.arm | 1 +
drivers/cpuidle/Kconfig | 1 +
drivers/gpu/drm/nouveau/core/engine/disp/dacnv50.c | 3 ++-
drivers/gpu/drm/tilcdc/Kconfig | 1 +
drivers/media/platform/davinci/Kconfig | 3 +++
drivers/media/platform/omap3isp/ispqueue.h | 1 +
drivers/mtd/nand/Kconfig | 2 +-
drivers/net/wireless/iwlegacy/common.h | 6 +++---
drivers/scsi/nsp32.c | 2 +-
include/drm/drmP.h | 3 +--
include/linux/clk/tegra.h | 5 +++++
include/linux/cpu_cooling.h | 4 ++--
include/linux/of_platform.h | 14 +++-----------
kernel/irq/irqdomain.c | 1 +
15 files changed, 27 insertions(+), 22 deletions(-)
Cc: "James E.J. Bottomley" <JBottomley@parallels.com>
Cc: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Cc: Dave Airlie <airlied@redhat.com>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Cc: John W. Linville <linville@tuxdriver.com>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Mauro Carvalho Chehab <mchehab@redhat.com>
Cc: Rafael J. Wysocki <rjw@sisk.pl>
Cc: Rob Clark <robdclark@gmail.com>
Cc: Rob Herring <rob.herring@calxeda.com>
Cc: Russell King <rmk+kernel@arm.linux.org.uk>
Cc: Stephen Warren <swarren@wwwdotorg.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Viresh Kumar <viresh.kumar@linaro.org>
Cc: cpufreq@vger.kernel.org
Cc: dri-devel@lists.freedesktop.org
Cc: linux-media@vger.kernel.org
Cc: linux-mtd@lists.infradead.org
Cc: linux-pm@vger.kernel.org
Cc: linux-rpi-kernel@lists.infradead.org
Cc: linux-scsi@vger.kernel.org
--
1.8.1.2
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 13/15] [media] omap3isp: include linux/mm_types.h
2013-05-31 22:22 [PATCH 00/15] Linux-3.10 ARM randconfig fixes Arnd Bergmann
@ 2013-05-31 22:22 ` Arnd Bergmann
2013-06-01 15:30 ` Laurent Pinchart
0 siblings, 1 reply; 4+ messages in thread
From: Arnd Bergmann @ 2013-05-31 22:22 UTC (permalink / raw)
To: linux-kernel
Cc: patches, linux-arm-kernel, Arnd Bergmann, Mauro Carvalho Chehab,
linux-media, Konstantin Khlebnikov, Laurent Pinchart
The ispqueue.h file uses vm_flags_t, which is defined in
linux/mm_types.h, so we must include that header in order
to build in all configurations.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Mauro Carvalho Chehab <mchehab@redhat.com>
Cc: linux-media@vger.kernel.org
Cc: Konstantin Khlebnikov <khlebnikov@openvz.org>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
---
drivers/media/platform/omap3isp/ispqueue.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/media/platform/omap3isp/ispqueue.h b/drivers/media/platform/omap3isp/ispqueue.h
index 908dfd7..e6e720c 100644
--- a/drivers/media/platform/omap3isp/ispqueue.h
+++ b/drivers/media/platform/omap3isp/ispqueue.h
@@ -31,6 +31,7 @@
#include <linux/mutex.h>
#include <linux/videodev2.h>
#include <linux/wait.h>
+#include <linux/mm_types.h>
struct isp_video_queue;
struct page;
--
1.8.1.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 13/15] [media] omap3isp: include linux/mm_types.h
2013-05-31 22:22 ` [PATCH 13/15] [media] omap3isp: include linux/mm_types.h Arnd Bergmann
@ 2013-06-01 15:30 ` Laurent Pinchart
2013-06-01 20:04 ` Arnd Bergmann
0 siblings, 1 reply; 4+ messages in thread
From: Laurent Pinchart @ 2013-06-01 15:30 UTC (permalink / raw)
To: Arnd Bergmann
Cc: linux-kernel, patches, linux-arm-kernel, Mauro Carvalho Chehab,
linux-media, Konstantin Khlebnikov
Hi Arnd,
Thank you for the patch.
On Saturday 01 June 2013 00:22:50 Arnd Bergmann wrote:
> The ispqueue.h file uses vm_flags_t, which is defined in
> linux/mm_types.h, so we must include that header in order
> to build in all configurations.
>
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> Cc: Mauro Carvalho Chehab <mchehab@redhat.com>
> Cc: linux-media@vger.kernel.org
> Cc: Konstantin Khlebnikov <khlebnikov@openvz.org>
> Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
(with a minor nitpick below)
> ---
> drivers/media/platform/omap3isp/ispqueue.h | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/media/platform/omap3isp/ispqueue.h
> b/drivers/media/platform/omap3isp/ispqueue.h index 908dfd7..e6e720c 100644
> --- a/drivers/media/platform/omap3isp/ispqueue.h
> +++ b/drivers/media/platform/omap3isp/ispqueue.h
> @@ -31,6 +31,7 @@
> #include <linux/mutex.h>
> #include <linux/videodev2.h>
> #include <linux/wait.h>
> +#include <linux/mm_types.h>
Could you please make sure the headers are sorted alphabetically ?
Would you like me to take the patch in my tree ? If so I'll sort the headers
myself.
> struct isp_video_queue;
> struct page;
--
Regards,
Laurent Pinchart
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 13/15] [media] omap3isp: include linux/mm_types.h
2013-06-01 15:30 ` Laurent Pinchart
@ 2013-06-01 20:04 ` Arnd Bergmann
0 siblings, 0 replies; 4+ messages in thread
From: Arnd Bergmann @ 2013-06-01 20:04 UTC (permalink / raw)
To: Laurent Pinchart
Cc: linux-kernel, patches, linux-arm-kernel, Mauro Carvalho Chehab,
linux-media, Konstantin Khlebnikov
On Saturday 01 June 2013, Laurent Pinchart wrote:
> > diff --git a/drivers/media/platform/omap3isp/ispqueue.h
> > b/drivers/media/platform/omap3isp/ispqueue.h index 908dfd7..e6e720c 100644
> > --- a/drivers/media/platform/omap3isp/ispqueue.h
> > +++ b/drivers/media/platform/omap3isp/ispqueue.h
> > @@ -31,6 +31,7 @@
> > #include <linux/mutex.h>
> > #include <linux/videodev2.h>
> > #include <linux/wait.h>
> > +#include <linux/mm_types.h>
>
> Could you please make sure the headers are sorted alphabetically ?
I normally do. Sorry for missing it this time.
> Would you like me to take the patch in my tree ? If so I'll sort the headers
> myself.
Yes, that would be nice, thanks!
Arnd
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-06-01 20:04 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-31 22:22 [PATCH 00/15] Linux-3.10 ARM randconfig fixes Arnd Bergmann
2013-05-31 22:22 ` [PATCH 13/15] [media] omap3isp: include linux/mm_types.h Arnd Bergmann
2013-06-01 15:30 ` Laurent Pinchart
2013-06-01 20:04 ` Arnd Bergmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox