diff options
author | Wolfram Sang <wsa+renesas@sang-engineering.com> | 2024-11-18 08:29:10 +0100 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2025-01-22 00:29:07 +0100 |
commit | 816875a468f40a601da001d7518ddbf363381a18 (patch) | |
tree | f2017c311910413dd16f2a26951a5fc322f73a6f /drivers/pci/pci.c | |
parent | PCI: Update code comment on PCI_EXP_LNKCAP_SLS for PCIe r3.0 (diff) | |
download | linux-816875a468f40a601da001d7518ddbf363381a18.tar.xz linux-816875a468f40a601da001d7518ddbf363381a18.zip |
PCI: Don't include 'pm_wakeup.h' directly
The header clearly states that it does not want to be included directly,
only via 'device.h'. The 'platform_device.h' works equally well.
Thus, remove the direct inclusion.
Link: https://lore.kernel.org/r/20241118072917.3853-12-wsa+renesas@sang-engineering.com
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Krzysztof WilczyĆski <kwilczynski@kernel.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to '')
-rw-r--r-- | drivers/pci/pci.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index 0b29ec6e8e5e..68d1f815b071 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -23,7 +23,6 @@ #include <linux/string.h> #include <linux/log2.h> #include <linux/logic_pio.h> -#include <linux/pm_wakeup.h> #include <linux/device.h> #include <linux/pm_runtime.h> #include <linux/pci_hotplug.h> |