On Wed, May 21, 2025 at 11:15:39PM +0000, grwhyte@xxxxxxxxxxxxxxxxxxx wrote: > From: Graham Whyte <grwhyte@xxxxxxxxxxxxxxxxxxx> > > Add a device-specific reset for Microsoft MANA devices with the FLR > delay reduced from 100ms to 10ms. While this is not compliant with the pci > spec, these devices safely complete the FLR much quicker than 100ms and > this can be reduced to optimize certain scenarios > > Signed-off-by: Graham Whyte <grwhyte@xxxxxxxxxxxxxxxxxxx> > --- > drivers/pci/pci.c | 3 ++- > drivers/pci/pci.h | 1 + > drivers/pci/quirks.c | 55 ++++++++++++++++++++++++++++++++++++++++++++ > 3 files changed, 58 insertions(+), 1 deletion(-) > > diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c > index 9cb1de7658b5..ad2960117acd 100644 > --- a/drivers/pci/pci.c > +++ b/drivers/pci/pci.c > @@ -1262,7 +1262,7 @@ void pci_resume_bus(struct pci_bus *bus) > pci_walk_bus(bus, pci_resume_one, NULL); > } > > -static int pci_dev_wait(struct pci_dev *dev, char *reset_type, int timeout) > +int pci_dev_wait(struct pci_dev *dev, char *reset_type, int timeout) > { > int delay = 1; > bool retrain = false; > @@ -1344,6 +1344,7 @@ static int pci_dev_wait(struct pci_dev *dev, char *reset_type, int timeout) > > return 0; > } > +EXPORT_SYMBOL_GPL(pci_dev_wait); pci.c and quirks.c can't built as independent modules. There is no need in EXPORT_SYMBOL_GPL here. Thanks