aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/pci.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/pci/pci.c')
-rw-r--r--drivers/pci/pci.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
index 447e83472c01..c87d518acace 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -2666,6 +2666,18 @@ static void __pci_set_master(struct pci_dev *dev, bool enable)
2666} 2666}
2667 2667
2668/** 2668/**
2669 * pcibios_setup - process "pci=" kernel boot arguments
2670 * @str: string used to pass in "pci=" kernel boot arguments
2671 *
2672 * Process kernel boot arguments. This is the default implementation.
2673 * Architecture specific implementations can override this as necessary.
2674 */
2675char * __weak __init pcibios_setup(char *str)
2676{
2677 return str;
2678}
2679
2680/**
2669 * pcibios_set_master - enable PCI bus-mastering for device dev 2681 * pcibios_set_master - enable PCI bus-mastering for device dev
2670 * @dev: the PCI device to enable 2682 * @dev: the PCI device to enable
2671 * 2683 *