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: 87966 Delivered-To: patch@linaro.org Received: by 10.140.20.101 with SMTP id 92csp2516853qgi; Tue, 13 Dec 2016 17:36:13 -0800 (PST) X-Received: by 10.99.253.85 with SMTP id m21mr183973387pgj.38.1481679373529; Tue, 13 Dec 2016 17:36:13 -0800 (PST) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id b5si50152280pgi.172.2016.12.13.17.36.12; Tue, 13 Dec 2016 17:36:13 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; dkim=pass header.i=@nifty.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754020AbcLNBgI (ORCPT + 25 others); Tue, 13 Dec 2016 20:36:08 -0500 Received: from conuserg-11.nifty.com ([210.131.2.78]:18470 "EHLO conuserg-11.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751256AbcLNBgH (ORCPT ); Tue, 13 Dec 2016 20:36:07 -0500 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 Cc: Robert Elliott , Matt Wagantall , Arnd Bergmann , Thierry Reding , David Howells , Thomas Gleixner , Nicolas Pitre , John Stultz , Vegard Nossum , Mitchel Humpherys , Andrew Morton , Masahiro Yamada , linux-kernel@vger.kernel.org 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 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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(-) -- 2.7.4 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