[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAJZ5v0iLe3UnRGv5=WVEkEXQ7e7Wc4_NSDpORvwDLrkMpbuzZg@mail.gmail.com>
Date: Wed, 7 May 2025 22:01:06 +0200
From: "Rafael J. Wysocki" <rafael@...nel.org>
To: Andy Shevchenko <andriy.shevchenko@...ux.intel.com>
Cc: linux-pm@...r.kernel.org, linux-kernel@...r.kernel.org,
"Rafael J. Wysocki" <rafael@...nel.org>, Pavel Machek <pavel@...nel.org>, Len Brown <len.brown@...el.com>
Subject: Re: [rft, PATCH v2 1/1] PM: Don't use "proxy" headers
On Wed, Apr 30, 2025 at 4:46 PM Andy Shevchenko
<andriy.shevchenko@...ux.intel.com> wrote:
>
> Update header inclusions to follow IWYU (Include What You Use)
> principle.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@...ux.intel.com>
> ---
>
> v2: fixed obvious missing hrtimer_types.h include (LKP)
>
> 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 | 15 ++++++++-------
> 1 file changed, 8 insertions(+), 7 deletions(-)
>
> diff --git a/include/linux/pm.h b/include/linux/pm.h
> index f0bd8fbae4f2..938b1b446a5d 100644
> --- a/include/linux/pm.h
> +++ b/include/linux/pm.h
> @@ -8,14 +8,15 @@
> #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/hrtimer_types.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.
> --
Applied as 6.16 material, thanks!
Powered by blists - more mailing lists