Message ID | 20221116205100.1136224-1-helgaas@kernel.org |
---|---|
Headers | show |
Series | PCI: Allow building CONFIG_OF drivers with COMPILE_TEST | expand |
On Wed, Nov 16, 2022 at 02:50:58PM -0600, Bjorn Helgaas wrote: > From: Bjorn Helgaas <bhelgaas@google.com> > > Update CONFIG_OF dependencies so we can compile-test drivers (with > CONFIG_COMPILE_TEST=y) even without CONFIG_OF being enabled. OF provides > stub functions when CONFIG_OF is not set. > > Changes from v1 to v2: > - Retain "depends on OF || COMPILE_TEST" instead of dropping "depends on > OF" completely so drivers are only offered when they are applicable or > COMPILE_SET is enabled (many thanks to Geert for pointing out this > major mistake) > > v1: https://lore.kernel.org/r/20221025191339.667614-1-helgaas@kernel.org > > Bjorn Helgaas (2): > PCI: Drop of_match_ptr() to avoid unused variables > PCI: Allow building CONFIG_OF drivers with COMPILE_TEST > > drivers/pci/controller/Kconfig | 34 +++++++++++---------- > drivers/pci/controller/cadence/Kconfig | 12 ++++---- > drivers/pci/controller/dwc/Kconfig | 40 ++++++++++++++++--------- > drivers/pci/controller/mobiveil/Kconfig | 2 +- > drivers/pci/controller/pci-ftpci100.c | 2 +- > drivers/pci/controller/pci-v3-semi.c | 2 +- > 6 files changed, 53 insertions(+), 39 deletions(-) Applied to pci/kbuild for v6.2.
From: Bjorn Helgaas <bhelgaas@google.com> Update CONFIG_OF dependencies so we can compile-test drivers (with CONFIG_COMPILE_TEST=y) even without CONFIG_OF being enabled. OF provides stub functions when CONFIG_OF is not set. Changes from v1 to v2: - Retain "depends on OF || COMPILE_TEST" instead of dropping "depends on OF" completely so drivers are only offered when they are applicable or COMPILE_SET is enabled (many thanks to Geert for pointing out this major mistake) v1: https://lore.kernel.org/r/20221025191339.667614-1-helgaas@kernel.org Bjorn Helgaas (2): PCI: Drop of_match_ptr() to avoid unused variables PCI: Allow building CONFIG_OF drivers with COMPILE_TEST drivers/pci/controller/Kconfig | 34 +++++++++++---------- drivers/pci/controller/cadence/Kconfig | 12 ++++---- drivers/pci/controller/dwc/Kconfig | 40 ++++++++++++++++--------- drivers/pci/controller/mobiveil/Kconfig | 2 +- drivers/pci/controller/pci-ftpci100.c | 2 +- drivers/pci/controller/pci-v3-semi.c | 2 +- 6 files changed, 53 insertions(+), 39 deletions(-)