diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2022-07-19 12:28:05 -0500 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2022-07-19 12:29:38 -0500 |
commit | 15a232408a8a525b6bb8f759419c38aa1bee50e8 (patch) | |
tree | c5c10d0f736fb701ffede61b7dd346d5fea88a03 | |
parent | f2906aa863381afb0015a9eb7fefad885d4e5a56 (diff) | |
download | linux-15a232408a8a525b6bb8f759419c38aa1bee50e8.tar.bz2 |
PCI: fu740: Remove unnecessary include files
fu740 uses no syscon or regman interfaces, so it doesn't need to include
mfs/syscon.h. It uses no regulator interfaces, so it doesn't need to
include regulator/consumer.h either.
Remove both unnecessary includes.
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
-rw-r--r-- | drivers/pci/controller/dwc/pcie-fu740.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/pci/controller/dwc/pcie-fu740.c b/drivers/pci/controller/dwc/pcie-fu740.c index 02cc70d8cc06..e8b008f73f34 100644 --- a/drivers/pci/controller/dwc/pcie-fu740.c +++ b/drivers/pci/controller/dwc/pcie-fu740.c @@ -16,11 +16,9 @@ #include <linux/gpio.h> #include <linux/gpio/consumer.h> #include <linux/kernel.h> -#include <linux/mfd/syscon.h> #include <linux/module.h> #include <linux/pci.h> #include <linux/platform_device.h> -#include <linux/regulator/consumer.h> #include <linux/resource.h> #include <linux/types.h> #include <linux/interrupt.h> |