From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758362Ab3BYOrT (ORCPT ); Mon, 25 Feb 2013 09:47:19 -0500 Received: from mail-pa0-f48.google.com ([209.85.220.48]:46301 "EHLO mail-pa0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751148Ab3BYOrR (ORCPT ); Mon, 25 Feb 2013 09:47:17 -0500 Date: Mon, 25 Feb 2013 22:48:06 +0800 From: Wang YanQing To: torvalds@linux-foundation.org Cc: linux-kernel@vger.kernel.org, alex.williamson@redhat.com, joerg.roedel@amd.com Subject: [PATCH]iommu: Include linux/err.h Message-ID: <20130225144806.GA25108@udknight> Mail-Followup-To: Wang YanQing , torvalds@linux-foundation.org, linux-kernel@vger.kernel.org, alex.williamson@redhat.com, joerg.roedel@amd.com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The linux/iommu.h header uses ERR_PTR defined in linux/err.h but doesn't include it. Reviewed-by: Alex Williamson Signed-off-by: Wang YanQing --- I send this twice to joerg.roedel@amd.com more than one month, but it had been ignored, I don't why. include/linux/iommu.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/iommu.h b/include/linux/iommu.h index f3b99e1..f4a49a6 100644 --- a/include/linux/iommu.h +++ b/include/linux/iommu.h @@ -20,6 +20,7 @@ #define __LINUX_IOMMU_H #include +#include #include #define IOMMU_READ (1) -- 1.7.11.1.116.g8228a23