From patchwork Wed Dec 14 01:33:45 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 9473571 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 3708D60823 for ; Wed, 14 Dec 2016 01:36:42 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 2810A286D6 for ; Wed, 14 Dec 2016 01:36:42 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 1C169286DC; Wed, 14 Dec 2016 01:36:42 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.1 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_MED,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id A958E286D6 for ; Wed, 14 Dec 2016 01:36:41 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.85_2 #1 (Red Hat Linux)) id 1cGyTI-0005eD-90; Wed, 14 Dec 2016 01:35:04 +0000 Received: from conuserg-11.nifty.com ([210.131.2.78]) by bombadil.infradead.org with esmtps (Exim 4.85_2 #1 (Red Hat Linux)) id 1cGyTD-0005ab-1w for linux-arm-kernel@lists.infradead.org; Wed, 14 Dec 2016 01:34:59 +0000 Received: from pug.jp.socionext.com (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-11.nifty.com with ESMTP id uBE1Xlqh008628; Wed, 14 Dec 2016 10:33:47 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-11.nifty.com uBE1Xlqh008628 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1481679228; bh=NkHbiPggXVPU2hEwxaejJZcEYDxdRBS1uH/f80Uvbqw=; h=From:To:Cc:Subject:Date:From; b=J9kNhNrk++owfVBJ3dDA4D9PysvpEhGlGDLzwyYCIGSM3CfG075jVZEo62SflWu59 PPNsPDqrcjHF3poS2XnF5nhtw2e5nC+3G0ioeTdTInmqW6QH2VgGJKuTbWsZwBZ7KE tYLEAl12EMB5M+vEsus5KG9HGp23QVUj2Bst3PboaCL57Zlgu3GTYB9CXnOpP6yCI1 8wdF5QMp1wxeGNLDpaKd4tzaw0soapYHy5NkHQybqVanJcMQ9LIwRRoY8+v0bkb13p N/TQtg+/GYEP2Jr+O5n89548H9g9FmY/lc2wfaMMq327aBFretHbsRjgzl9srHerig n1DLm7uFDRqlg== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: linux-arm-kernel@lists.infradead.org, Will Deacon Subject: [PATCH] iopoll: include instead of Date: Wed, 14 Dec 2016 10:33:45 +0900 Message-Id: <1481679225-10885-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20161213_173459_471017_21717F6E X-CRM114-Status: UNSURE ( 8.63 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Vegard Nossum , Arnd Bergmann , Nicolas Pitre , linux-kernel@vger.kernel.org, David Howells , Masahiro Yamada , Thierry Reding , Matt Wagantall , Robert Elliott , John Stultz , Thomas Gleixner , Mitchel Humpherys , Andrew Morton MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Virus-Scanned: ClamAV using ClamSMTP The timer APIs this header needs are ktime_get(), ktime_add_us(), and ktime_compare(). So, including seems enough. This commit will cut unnecessary header file parsing. Signed-off-by: Masahiro Yamada --- I was not quite sure whom I should send this patch to. I am sending this to Will Deacon because commit 54c523127bcc ("iopoll: Introduce memory-mapped IO polling macros") was applied by him. include/linux/iopoll.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/iopoll.h b/include/linux/iopoll.h index 1c30014..d29e1e2 100644 --- a/include/linux/iopoll.h +++ b/include/linux/iopoll.h @@ -17,7 +17,7 @@ #include #include -#include +#include #include #include #include