[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <7d7efc03-75b2-58c7-f744-d7bc3de6a771@arm.com>
Date: Fri, 5 Apr 2019 18:42:57 +0100
From: Robin Murphy <robin.murphy@....com>
To: Christoph Hellwig <hch@....de>
Cc: Joerg Roedel <joro@...tes.org>,
Catalin Marinas <catalin.marinas@....com>,
Will Deacon <will.deacon@....com>,
Tom Lendacky <thomas.lendacky@....com>,
iommu@...ts.linux-foundation.org,
linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 04/21] dma-iommu: cleanup dma-iommu.h
On 27/03/2019 08:04, Christoph Hellwig wrote:
> No need for a __KERNEL__ guard outside uapi and add a missing comment
> describing the #else cpp statement. Last but not least include
> <linux/errno.h> instead of the asm version, which is frowned upon.
>
> Signed-off-by: Christoph Hellwig <hch@....de>
> ---
> include/linux/dma-iommu.h | 7 +++----
> 1 file changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/include/linux/dma-iommu.h b/include/linux/dma-iommu.h
> index e760dc5d1fa8..3e206f4ee173 100644
> --- a/include/linux/dma-iommu.h
> +++ b/include/linux/dma-iommu.h
> @@ -16,14 +16,14 @@
> #ifndef __DMA_IOMMU_H
> #define __DMA_IOMMU_H
>
> -#ifdef __KERNEL__
> +#include <linux/errno.h>
> #include <linux/types.h>
> -#include <asm/errno.h>
>
> #ifdef CONFIG_IOMMU_DMA
> #include <linux/dma-mapping.h>
> #include <linux/iommu.h>
> #include <linux/msi.h>
> +#include <linux/types.h>
Other than introducing this unnecessary dupe,
Reviewed-by: Robin Murphy <robin.murphy@....com>
> int iommu_dma_init(void);
>
> @@ -74,7 +74,7 @@ void iommu_dma_unmap_resource(struct device *dev, dma_addr_t handle,
> void iommu_dma_map_msi_msg(int irq, struct msi_msg *msg);
> void iommu_dma_get_resv_regions(struct device *dev, struct list_head *list);
>
> -#else
> +#else /* CONFIG_IOMMU_DMA */
>
> struct iommu_domain;
> struct msi_msg;
> @@ -108,5 +108,4 @@ static inline void iommu_dma_get_resv_regions(struct device *dev, struct list_he
> }
>
> #endif /* CONFIG_IOMMU_DMA */
> -#endif /* __KERNEL__ */
> #endif /* __DMA_IOMMU_H */
>
Powered by blists - more mailing lists