Message ID | 20211115070809.15529-6-sergio.paracuellos@gmail.com (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Series | PCI: mt7621: remove specific MIPS code from driver | expand |
For subject: PCI: mt7621: Allow COMPILE_TEST for all arches On Mon, Nov 15, 2021 at 08:08:09AM +0100, Sergio Paracuellos wrote: > Since all MIPS specific code has been moved from the controller driver side > there is no more stoppers to enable the driver to be completely enable for > 'COMPILE_TEST'. Hence, remove MIPS conditional statement. > > Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> > --- > drivers/pci/controller/Kconfig | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/pci/controller/Kconfig b/drivers/pci/controller/Kconfig > index e917bb3652bb..105ec7dcccc9 100644 > --- a/drivers/pci/controller/Kconfig > +++ b/drivers/pci/controller/Kconfig > @@ -332,7 +332,7 @@ config PCIE_APPLE > > config PCIE_MT7621 > tristate "MediaTek MT7621 PCIe Controller" > - depends on (RALINK && SOC_MT7621) || (MIPS && COMPILE_TEST) > + depends on (RALINK && SOC_MT7621) || COMPILE_TEST > select PHY_MT7621_PCI > default SOC_MT7621 > help > -- > 2.33.0 >
On Wed, Dec 1, 2021 at 9:12 PM Bjorn Helgaas <helgaas@kernel.org> wrote: > > For subject: > > PCI: mt7621: Allow COMPILE_TEST for all arches Understood, thanks. Best regards, Sergio Paracuellos > > On Mon, Nov 15, 2021 at 08:08:09AM +0100, Sergio Paracuellos wrote: > > Since all MIPS specific code has been moved from the controller driver side > > there is no more stoppers to enable the driver to be completely enable for > > 'COMPILE_TEST'. Hence, remove MIPS conditional statement. > > > > Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> > > --- > > drivers/pci/controller/Kconfig | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/drivers/pci/controller/Kconfig b/drivers/pci/controller/Kconfig > > index e917bb3652bb..105ec7dcccc9 100644 > > --- a/drivers/pci/controller/Kconfig > > +++ b/drivers/pci/controller/Kconfig > > @@ -332,7 +332,7 @@ config PCIE_APPLE > > > > config PCIE_MT7621 > > tristate "MediaTek MT7621 PCIe Controller" > > - depends on (RALINK && SOC_MT7621) || (MIPS && COMPILE_TEST) > > + depends on (RALINK && SOC_MT7621) || COMPILE_TEST > > select PHY_MT7621_PCI > > default SOC_MT7621 > > help > > -- > > 2.33.0 > >
diff --git a/drivers/pci/controller/Kconfig b/drivers/pci/controller/Kconfig index e917bb3652bb..105ec7dcccc9 100644 --- a/drivers/pci/controller/Kconfig +++ b/drivers/pci/controller/Kconfig @@ -332,7 +332,7 @@ config PCIE_APPLE config PCIE_MT7621 tristate "MediaTek MT7621 PCIe Controller" - depends on (RALINK && SOC_MT7621) || (MIPS && COMPILE_TEST) + depends on (RALINK && SOC_MT7621) || COMPILE_TEST select PHY_MT7621_PCI default SOC_MT7621 help
Since all MIPS specific code has been moved from the controller driver side there is no more stoppers to enable the driver to be completely enable for 'COMPILE_TEST'. Hence, remove MIPS conditional statement. Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> --- drivers/pci/controller/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)