Message ID | 20241118072917.3853-6-wsa+renesas@sang-engineering.com |
---|---|
State | Accepted |
Commit | a39fbef7c411235a5caf48de3c49d4d406fd118b |
Headers | show |
Series | treewide: don't include 'pm_wakeup.h' directly | expand |
diff --git a/drivers/input/keyboard/spear-keyboard.c b/drivers/input/keyboard/spear-keyboard.c index 1df4feb8ba01..18417ba19fdb 100644 --- a/drivers/input/keyboard/spear-keyboard.c +++ b/drivers/input/keyboard/spear-keyboard.c @@ -20,7 +20,6 @@ #include <linux/module.h> #include <linux/of.h> #include <linux/platform_device.h> -#include <linux/pm_wakeup.h> #include <linux/slab.h> #include <linux/types.h> #include <linux/platform_data/keyboard-spear.h>
The header clearly states that it does not want to be included directly, only via 'device.h'. 'platform_device.h' works equally well. Remove the direct inclusion. Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> --- drivers/input/keyboard/spear-keyboard.c | 1 - 1 file changed, 1 deletion(-)