Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1541629 > unrolled thread

[PATCH] iopoll: include <linux/ktime.h> instead of <linux/hrtimer.h>

Started byMasahiro Yamada <yamada.masahiro@socionext.com>
First post2016-12-14 02:40 +0100
Last post2016-12-14 02:40 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] iopoll: include <linux/ktime.h> instead of <linux/hrtimer.h> Masahiro Yamada <yamada.masahiro@socionext.com> - 2016-12-14 02:40 +0100

#1541629 — [PATCH] iopoll: include <linux/ktime.h> instead of <linux/hrtimer.h>

FromMasahiro Yamada <yamada.masahiro@socionext.com>
Date2016-12-14 02:40 +0100
Subject[PATCH] iopoll: include <linux/ktime.h> instead of <linux/hrtimer.h>
Message-ID<sO6I2-72-3@gated-at.bofh.it>
The timer APIs this header needs are ktime_get(), ktime_add_us(),
and ktime_compare().  So, including <linux/ktime.h> seems enough.
This commit will cut unnecessary header file parsing.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

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 <linux/kernel.h>
 #include <linux/types.h>
-#include <linux/hrtimer.h>
+#include <linux/ktime.h>
 #include <linux/delay.h>
 #include <linux/errno.h>
 #include <linux/io.h>
-- 
2.7.4

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web