forked from Minki/linux
PCI: Rename extend_bridge_window() to adjust_bridge_window()
Rename extend_bridge_window() to adjust_bridge_window() to prepare for the fact that the window will be able to shrink. No functional change intended. Link: https://lore.kernel.org/r/PSXP216MB0438C47B3473D0C9DE531F18803C0@PSXP216MB0438.KORP216.PROD.OUTLOOK.COM Signed-off-by: Nicholas Johnson <nicholas.johnson-opensource@outlook.com.au> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>
This commit is contained in:
parent
3d264da9b7
commit
1e58f4e1cb
@ -1838,7 +1838,7 @@ void __init pci_assign_unassigned_resources(void)
|
||||
}
|
||||
}
|
||||
|
||||
static void extend_bridge_window(struct pci_dev *bridge, struct resource *res,
|
||||
static void adjust_bridge_window(struct pci_dev *bridge, struct resource *res,
|
||||
struct list_head *add_list,
|
||||
resource_size_t new_size)
|
||||
{
|
||||
@ -1901,9 +1901,9 @@ static void pci_bus_distribute_available_resources(struct pci_bus *bus,
|
||||
* calculated in __pci_bus_size_bridges() which covers all the
|
||||
* devices currently connected to the port and below.
|
||||
*/
|
||||
extend_bridge_window(bridge, io_res, add_list, resource_size(&io));
|
||||
extend_bridge_window(bridge, mmio_res, add_list, resource_size(&mmio));
|
||||
extend_bridge_window(bridge, mmio_pref_res, add_list,
|
||||
adjust_bridge_window(bridge, io_res, add_list, resource_size(&io));
|
||||
adjust_bridge_window(bridge, mmio_res, add_list, resource_size(&mmio));
|
||||
adjust_bridge_window(bridge, mmio_pref_res, add_list,
|
||||
resource_size(&mmio_pref));
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user