From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751928AbeEMOFf (ORCPT ); Sun, 13 May 2018 10:05:35 -0400 Received: from terminus.zytor.com ([198.137.202.136]:58819 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751338AbeEMOFe (ORCPT ); Sun, 13 May 2018 10:05:34 -0400 Date: Sun, 13 May 2018 07:05:23 -0700 From: tip-bot for Marc Zyngier Message-ID: Cc: jason@lakedaemon.net, mingo@kernel.org, hpa@zytor.com, ard.biesheuvel@linaro.org, tglx@linutronix.de, srinivas.kandagatla@linaro.org, robh@kernel.org, linux-kernel@vger.kernel.org, marc.zyngier@arm.com, miquel.raynal@bootlin.com, thomas.petazzoni@bootlin.com Reply-To: tglx@linutronix.de, srinivas.kandagatla@linaro.org, robh@kernel.org, thomas.petazzoni@bootlin.com, miquel.raynal@bootlin.com, linux-kernel@vger.kernel.org, marc.zyngier@arm.com, hpa@zytor.com, jason@lakedaemon.net, mingo@kernel.org, ard.biesheuvel@linaro.org In-Reply-To: <20180508121438.11301-5-marc.zyngier@arm.com> References: <20180508121438.11301-5-marc.zyngier@arm.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:irq/core] dma-iommu: Fix compilation when !CONFIG_IOMMU_DMA Git-Commit-ID: 8a22a3e1e768c309b718f99bd86f9f25a453e0dc X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 8a22a3e1e768c309b718f99bd86f9f25a453e0dc Gitweb: https://git.kernel.org/tip/8a22a3e1e768c309b718f99bd86f9f25a453e0dc Author: Marc Zyngier AuthorDate: Tue, 8 May 2018 13:14:33 +0100 Committer: Thomas Gleixner CommitDate: Sun, 13 May 2018 15:59:00 +0200 dma-iommu: Fix compilation when !CONFIG_IOMMU_DMA Inclusion of include/dma-iommu.h when CONFIG_IOMMU_DMA is not selected results in the following splat: In file included from drivers/irqchip/irq-gic-v3-mbi.c:20:0: ./include/linux/dma-iommu.h:95:69: error: unknown type name ‘dma_addr_t’ static inline int iommu_get_msi_cookie(struct iommu_domain *domain, dma_addr_t base) ^~~~~~~~~~ ./include/linux/dma-iommu.h:108:74: warning: ‘struct list_head’ declared inside parameter list will not be visible outside of this definition or declaration static inline void iommu_dma_get_resv_regions(struct device *dev, struct list_head *list) ^~~~~~~~~ scripts/Makefile.build:312: recipe for target 'drivers/irqchip/irq-gic-v3-mbi.o' failed Fix it by including linux/types.h. Signed-off-by: Marc Zyngier Signed-off-by: Thomas Gleixner Cc: Rob Herring Cc: Jason Cooper Cc: Ard Biesheuvel Cc: Srinivas Kandagatla Cc: Thomas Petazzoni Cc: Miquel Raynal Link: https://lkml.kernel.org/r/20180508121438.11301-5-marc.zyngier@arm.com --- include/linux/dma-iommu.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/dma-iommu.h b/include/linux/dma-iommu.h index 92f20832fd28..e8ca5e654277 100644 --- a/include/linux/dma-iommu.h +++ b/include/linux/dma-iommu.h @@ -17,6 +17,7 @@ #define __DMA_IOMMU_H #ifdef __KERNEL__ +#include #include #ifdef CONFIG_IOMMU_DMA