From patchwork Wed Sep 19 12:06:59 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 1477301 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 9C144400EC for ; Wed, 19 Sep 2012 12:06:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932159Ab2ISMGo (ORCPT ); Wed, 19 Sep 2012 08:06:44 -0400 Received: from perceval.ideasonboard.com ([95.142.166.194]:35805 "EHLO perceval.ideasonboard.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756184Ab2ISMGl (ORCPT ); Wed, 19 Sep 2012 08:06:41 -0400 Received: from avalon.ideasonboard.com (unknown [91.178.74.202]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 8F43535A90; Wed, 19 Sep 2012 14:06:31 +0200 (CEST) From: Laurent Pinchart To: linux-omap@vger.kernel.org Cc: Omar Ramirez Luna Subject: [PATCH v2 11/15] arm: omap: iommu: Include required headers in iommu.h and iopgtable.h Date: Wed, 19 Sep 2012 14:06:59 +0200 Message-Id: <1348056423-25573-12-git-send-email-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 1.7.8.6 In-Reply-To: <1348056423-25573-1-git-send-email-laurent.pinchart@ideasonboard.com> References: <1348056423-25573-1-git-send-email-laurent.pinchart@ideasonboard.com> Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org Both headers make use of externally defined structures, types or functions. Include the appropriate headers. Signed-off-by: Laurent Pinchart --- arch/arm/plat-omap/include/plat/iommu.h | 4 ++++ arch/arm/plat-omap/include/plat/iopgtable.h | 2 ++ 2 files changed, 6 insertions(+), 0 deletions(-) diff --git a/arch/arm/plat-omap/include/plat/iommu.h b/arch/arm/plat-omap/include/plat/iommu.h index e58d571..6661eec 100644 --- a/arch/arm/plat-omap/include/plat/iommu.h +++ b/arch/arm/plat-omap/include/plat/iommu.h @@ -13,6 +13,10 @@ #ifndef __MACH_IOMMU_H #define __MACH_IOMMU_H +#include +#include +#include + struct iotlb_entry { u32 da; u32 pa; diff --git a/arch/arm/plat-omap/include/plat/iopgtable.h b/arch/arm/plat-omap/include/plat/iopgtable.h index 66a8139..ebb6e21 100644 --- a/arch/arm/plat-omap/include/plat/iopgtable.h +++ b/arch/arm/plat-omap/include/plat/iopgtable.h @@ -13,6 +13,8 @@ #ifndef __PLAT_OMAP_IOMMU_H #define __PLAT_OMAP_IOMMU_H +#include + /* * "L2 table" address mask and size definitions. */