From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751714Ab2LTTur (ORCPT ); Thu, 20 Dec 2012 14:50:47 -0500 Received: from mho-03-ewr.mailhop.org ([204.13.248.66]:27235 "EHLO mho-01-ewr.mailhop.org" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751060Ab2LTTum (ORCPT ); Thu, 20 Dec 2012 14:50:42 -0500 X-Mail-Handler: Dyn Standard SMTP by Dyn X-Originating-IP: 50.131.214.131 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/sendlabs/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX182VWd0YBjpeaoIe+hBards Date: Thu, 20 Dec 2012 11:50:34 -0800 From: Tony Lindgren To: Linus Torvalds Cc: Olof Johansson , Russell King - ARM Linux , arm@kernel.org, linux-arm-kernel@lists.infradead.org, Linux Kernel Mailing List , maxime.ripard@free-electrons.com, Benjamin Herrenschmidt , David Miller , Joerg Roedel Subject: [PATCH] ARM: OMAP2+: Trivial fix for IOMMU merge issue (Re: [GIT PULL v2] ARM: arm-soc fixes for 3.8) Message-ID: <20121220195033.GI21056@atomide.com> References: <20121220163814.GA29557@quad.lixom.net> <20121220175639.GA14363@n2100.arm.linux.org.uk> <20121220184525.GC21056@atomide.com> <20121220190847.GF21056@atomide.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20121220190847.GF21056@atomide.com> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit 787314c3 (Merge tag 'iommu-updates-v3.8' of git://git./linux/kernel/git/joro/iommu) did not account for the changed header location. The headers were made local to mach-omap2 as they are specific to omap2+ only, and we wanted to get most of the #include headers fixed up anyways for the ARM multiplatform support. We attempted to avoid this kind of merge conflict early on by setting up a minimal git branch shared by the arm-soc tree and the iommu tree, but looks like we still hit a merge issue there as the branches got merged as various topic branches. Cc: Joerg Roedel Signed-off-by: Tony Lindgren --- Found one more merge issue with the recent IOMMU merge. Linus, maybe apply this fix directly as Olof's branch is based on an earlier commit? --- a/arch/arm/mach-omap2/omap-iommu.c +++ b/arch/arm/mach-omap2/omap-iommu.c @@ -16,8 +16,8 @@ #include #include -#include -#include +#include "omap_hwmod.h" +#include "omap_device.h" static int __init omap_iommu_dev_init(struct omap_hwmod *oh, void *unused) {