Skip to content

Commit 101b259

Browse files
andy-shevBartosz Golaszewski
authored andcommitted
gpio: xgene-sb: don't use "proxy" headers
Update header inclusions to follow IWYU (Include What You Use) principle. Signed-off-by: Andy Shevchenko <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Bartosz Golaszewski <[email protected]>
1 parent 6ebbe78 commit 101b259

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

drivers/gpio/gpio-xgene-sb.c

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,19 @@
88
* Quan Nguyen <[email protected]>.
99
*/
1010

11-
#include <linux/module.h>
11+
#include <linux/device.h>
12+
#include <linux/err.h>
1213
#include <linux/io.h>
14+
#include <linux/irq.h>
15+
#include <linux/irqdomain.h>
16+
#include <linux/mod_devicetable.h>
17+
#include <linux/module.h>
1318
#include <linux/of.h>
1419
#include <linux/platform_device.h>
20+
#include <linux/property.h>
21+
#include <linux/types.h>
22+
1523
#include <linux/gpio/driver.h>
16-
#include <linux/acpi.h>
1724

1825
#include "gpiolib-acpi.h"
1926

0 commit comments

Comments
 (0)