Skip to content

Commit 3cc98aa

Browse files
andy-shevakpm00
authored andcommitted
devres: don't use "proxy" headers
Update header inclusions to follow IWYU (Include What You Use) principle. Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Andy Shevchenko <[email protected]> Reviewed-by: Philipp Stanner <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
1 parent f36c54f commit 3cc98aa

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

lib/devres.c

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
// SPDX-License-Identifier: GPL-2.0
2+
#include <linux/bug.h>
23
#include <linux/device.h>
3-
#include <linux/err.h>
4-
#include <linux/io.h>
5-
#include <linux/gfp.h>
4+
#include <linux/errno.h>
65
#include <linux/export.h>
6+
#include <linux/gfp_types.h>
7+
#include <linux/io.h>
8+
#include <linux/ioport.h>
79
#include <linux/of_address.h>
10+
#include <linux/types.h>
811

912
enum devm_ioremap_type {
1013
DEVM_IOREMAP = 0,

0 commit comments

Comments
 (0)