iommu.lists.linux-foundation.org archive mirror
 help / color / mirror / Atom feed
* [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 8/9] iommu: OMAP: build only on OMAP2+ Arnd Bergmann
  0 siblings, 1 reply; 4+ 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] 4+ messages in thread

* [PATCH 8/9] iommu: OMAP: build only on OMAP2+
  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-06  1:10   ` Tony Lindgren
       [not found]   ` <1362521809-22989-9-git-send-email-arnd-r2nGTMty4D4@public.gmane.org>
  0 siblings, 2 replies; 4+ messages in thread
From: Arnd Bergmann @ 2013-03-05 22:16 UTC (permalink / raw)
  To: linux-kernel
  Cc: linux-arm-kernel, arm, Arnd Bergmann, Joerg Roedel, iommu,
	Ohad Ben-Cohen, Tony Lindgren, Omar Ramirez Luna

The OMAP IOMMU driver intentionally fails to build on OMAP1
platforms, so we should not allow enabling it there.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Joerg Roedel <joro@8bytes.org>
Cc: iommu@lists.linux-foundation.org
Cc: Ohad Ben-Cohen <ohad@wizery.com>
Cc: Tony Lindgren <tony@atomide.com>
Cc: Omar Ramirez Luna <omar.luna@linaro.org>
---
 drivers/iommu/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/iommu/Kconfig b/drivers/iommu/Kconfig
index 5c514d07..c332fb9 100644
--- a/drivers/iommu/Kconfig
+++ b/drivers/iommu/Kconfig
@@ -130,7 +130,7 @@ config IRQ_REMAP
 # OMAP IOMMU support
 config OMAP_IOMMU
 	bool "OMAP IOMMU Support"
-	depends on ARCH_OMAP
+	depends on ARCH_OMAP2PLUS
 	select IOMMU_API
 
 config OMAP_IOVMM
-- 
1.8.1.2

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

* Re: [PATCH 8/9] iommu: OMAP: build only on OMAP2+
  2013-03-05 22:16 ` [PATCH 8/9] iommu: OMAP: build only on OMAP2+ Arnd Bergmann
@ 2013-03-06  1:10   ` Tony Lindgren
       [not found]   ` <1362521809-22989-9-git-send-email-arnd-r2nGTMty4D4@public.gmane.org>
  1 sibling, 0 replies; 4+ messages in thread
From: Tony Lindgren @ 2013-03-06  1:10 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: linux-kernel, linux-arm-kernel, arm, Joerg Roedel, iommu,
	Ohad Ben-Cohen, Omar Ramirez Luna

* Arnd Bergmann <arnd@arndb.de> [130305 14:21]:
> The OMAP IOMMU driver intentionally fails to build on OMAP1
> platforms, so we should not allow enabling it there.
> 
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> Cc: Joerg Roedel <joro@8bytes.org>
> Cc: iommu@lists.linux-foundation.org
> Cc: Ohad Ben-Cohen <ohad@wizery.com>
> Cc: Tony Lindgren <tony@atomide.com>
> Cc: Omar Ramirez Luna <omar.luna@linaro.org>

Makes sense, I doubt that anybody will work on omap1 version
at this point:

Acked-by: Tony Lindgren <tony@atomide.com>

> ---
>  drivers/iommu/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/iommu/Kconfig b/drivers/iommu/Kconfig
> index 5c514d07..c332fb9 100644
> --- a/drivers/iommu/Kconfig
> +++ b/drivers/iommu/Kconfig
> @@ -130,7 +130,7 @@ config IRQ_REMAP
>  # OMAP IOMMU support
>  config OMAP_IOMMU
>  	bool "OMAP IOMMU Support"
> -	depends on ARCH_OMAP
> +	depends on ARCH_OMAP2PLUS
>  	select IOMMU_API
>  
>  config OMAP_IOVMM
> -- 
> 1.8.1.2
> 

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

* Re: [PATCH 8/9] iommu: OMAP: build only on OMAP2+
       [not found]   ` <1362521809-22989-9-git-send-email-arnd-r2nGTMty4D4@public.gmane.org>
@ 2013-03-09 18:02     ` Joerg Roedel
  0 siblings, 0 replies; 4+ messages in thread
From: Joerg Roedel @ 2013-03-09 18:02 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Ohad Ben-Cohen, Tony Lindgren,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA,
	arm-DgEjT+Ai2ygdnm+yROfE0A, Omar Ramirez Luna,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

On Tue, Mar 05, 2013 at 11:16:48PM +0100, Arnd Bergmann wrote:
> The OMAP IOMMU driver intentionally fails to build on OMAP1
> platforms, so we should not allow enabling it there.
> 
> Signed-off-by: Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org>
> Cc: Joerg Roedel <joro-zLv9SwRftAIdnm+yROfE0A@public.gmane.org>
> Cc: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
> Cc: Ohad Ben-Cohen <ohad-Ix1uc/W3ht7QT0dZR+AlfA@public.gmane.org>
> Cc: Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
> Cc: Omar Ramirez Luna <omar.luna-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>

Applied to iommu/fixes, thanks Arnd.

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

end of thread, other threads:[~2013-03-09 18:02 UTC | newest]

Thread overview: 4+ 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 8/9] iommu: OMAP: build only on OMAP2+ Arnd Bergmann
2013-03-06  1:10   ` Tony Lindgren
     [not found]   ` <1362521809-22989-9-git-send-email-arnd-r2nGTMty4D4@public.gmane.org>
2013-03-09 18:02     ` Joerg Roedel

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