diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2024-03-12 20:14:24 +0300 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2024-03-12 20:14:24 +0300 |
commit | 45a516f616cae50eabd81c1aa6b1bacbdf2f8c65 (patch) | |
tree | 54ec012a56c154e2f39c05cf690e1ad6879028df /drivers/pci | |
parent | f931e3cb968abfdc13c2360c411d1a86eec9c1f9 (diff) | |
parent | 7adf6ac8521e2102d1d0f970c532e1bb91e1d096 (diff) | |
download | linux-45a516f616cae50eabd81c1aa6b1bacbdf2f8c65.tar.xz |
Merge branch 'pci/misc'
- Make pcie_port_bus_type const (Ricardo B. Marliere)
* pci/misc:
PCI: Make pcie_port_bus_type const
Diffstat (limited to 'drivers/pci')
-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; |