diff mbox series

[rft,v1,1/1] PM: Don't use "proxy" headers

Message ID 20250428071922.3264455-1-andriy.shevchenko@linux.intel.com
State New
Headers show
Series [rft,v1,1/1] PM: Don't use "proxy" headers | expand

Commit Message

Andy Shevchenko April 28, 2025, 7:18 a.m. UTC
Update header inclusions to follow IWYU (Include What You Use)
principle.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---

It may fail some builds, let's wait for CIs to report any issues before
applying this. But I also encourage to test it locally as much as possible.

 include/linux/pm.h | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
diff mbox series

Patch

diff --git a/include/linux/pm.h b/include/linux/pm.h
index f0bd8fbae4f2..8e1c37d40a90 100644
--- a/include/linux/pm.h
+++ b/include/linux/pm.h
@@ -8,14 +8,14 @@ 
 #ifndef _LINUX_PM_H
 #define _LINUX_PM_H
 
-#include <linux/export.h>
-#include <linux/list.h>
-#include <linux/workqueue.h>
-#include <linux/spinlock.h>
-#include <linux/wait.h>
-#include <linux/timer.h>
-#include <linux/hrtimer.h>
 #include <linux/completion.h>
+#include <linux/export.h>
+#include <linux/mutex.h>
+#include <linux/spinlock.h>
+#include <linux/types.h>
+#include <linux/util_macros.h>
+#include <linux/wait.h>
+#include <linux/workqueue_types.h>
 
 /*
  * Callbacks for platform drivers to implement.