diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2024-04-03 12:46:57 +0200 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2024-04-26 06:07:06 +0200 |
commit | 3cc98aa11ec4c3b9b55fa185c8882e4ae20cbd6a (patch) | |
tree | cff01447a2aceb4fccd844b0318ed5413df23e2e /lib/devres.c | |
parent | devres: switch to use dev_err_probe() for unification (diff) | |
download | linux-3cc98aa11ec4c3b9b55fa185c8882e4ae20cbd6a.tar.xz linux-3cc98aa11ec4c3b9b55fa185c8882e4ae20cbd6a.zip |
devres: don't use "proxy" headers
Update header inclusions to follow IWYU (Include What You Use) principle.
Link: https://lkml.kernel.org/r/20240403104820.557487-3-andriy.shevchenko@linux.intel.com
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Philipp Stanner <pstanner@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'lib/devres.c')
-rw-r--r-- | lib/devres.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/devres.c b/lib/devres.c index 27f280a39dca..4fc152de6d8b 100644 --- a/lib/devres.c +++ b/lib/devres.c @@ -1,10 +1,13 @@ // SPDX-License-Identifier: GPL-2.0 +#include <linux/bug.h> #include <linux/device.h> -#include <linux/err.h> -#include <linux/io.h> -#include <linux/gfp.h> +#include <linux/errno.h> #include <linux/export.h> +#include <linux/gfp_types.h> +#include <linux/io.h> +#include <linux/ioport.h> #include <linux/of_address.h> +#include <linux/types.h> enum devm_ioremap_type { DEVM_IOREMAP = 0, |