diff options
author | 2024-03-12 12:14:24 -0500 | |
---|---|---|
committer | 2024-03-12 12:14:24 -0500 | |
commit | 45a516f616cae50eabd81c1aa6b1bacbdf2f8c65 (patch) | |
tree | 54ec012a56c154e2f39c05cf690e1ad6879028df | |
parent | Merge branch 'pci/endpoint' (diff) | |
parent | PCI: Make pcie_port_bus_type const (diff) | |
download | wireguard-linux-45a516f616cae50eabd81c1aa6b1bacbdf2f8c65.tar.xz wireguard-linux-45a516f616cae50eabd81c1aa6b1bacbdf2f8c65.zip |
Merge branch 'pci/misc'
- Make pcie_port_bus_type const (Ricardo B. Marliere)
* pci/misc:
PCI: Make pcie_port_bus_type const
-rw-r--r-- | drivers/pci/pci-driver.c | 2 | ||||
-rw-r--r-- | drivers/pci/pcie/portdrv.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pci/pci-driver.c b/drivers/pci/pci-driver.c index 072b83493194..af2996d0d17f 100644 --- a/drivers/pci/pci-driver.c +++ b/drivers/pci/pci-driver.c @@ -1709,7 +1709,7 @@ static int pcie_port_bus_match(struct device *dev, struct device_driver *drv) return 1; } -struct bus_type pcie_port_bus_type = { +const struct bus_type pcie_port_bus_type = { .name = "pci_express", .match = pcie_port_bus_match, }; diff --git a/drivers/pci/pcie/portdrv.h b/drivers/pci/pcie/portdrv.h index 1f3803bde7ee..12c89ea0313b 100644 --- a/drivers/pci/pcie/portdrv.h +++ b/drivers/pci/pcie/portdrv.h @@ -96,7 +96,7 @@ struct pcie_port_service_driver { int pcie_port_service_register(struct pcie_port_service_driver *new); void pcie_port_service_unregister(struct pcie_port_service_driver *new); -extern struct bus_type pcie_port_bus_type; +extern const struct bus_type pcie_port_bus_type; struct pci_dev; |