]> git.itanic.dy.fi Git - linux-stable/commitdiff
PCI: mt7621: Convert driver into 'bool'
authorSergio Paracuellos <sergio.paracuellos@gmail.com>
Wed, 1 Dec 2021 21:34:02 +0000 (22:34 +0100)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 13 Dec 2021 19:13:32 +0000 (11:13 -0800)
The driver is not ready yet to be compiled as a module since it depends
on some symbols not exported on MIPS.  We have the following current
problems:

  Building mips:allmodconfig ... failed
  --------------
  Error log:
  ERROR: modpost: missing MODULE_LICENSE() in drivers/pci/controller/pcie-mt7621.o
  ERROR: modpost: "mips_cm_unlock_other" [drivers/pci/controller/pcie-mt7621.ko] undefined!
  ERROR: modpost: "mips_cpc_base" [drivers/pci/controller/pcie-mt7621.ko] undefined!
  ERROR: modpost: "mips_cm_lock_other" [drivers/pci/controller/pcie-mt7621.ko] undefined!
  ERROR: modpost: "mips_cm_is64" [drivers/pci/controller/pcie-mt7621.ko] undefined!
  ERROR: modpost: "mips_gcr_base" [drivers/pci/controller/pcie-mt7621.ko] undefined!

Temporarily move from 'tristate' to 'bool' until a better solution is
ready.

Also RALINK is redundant because SOC_MT7621 already depends on it.
Hence, simplify condition.

Fixes: 2bdd5238e756 ("PCI: mt7621: Add MediaTek MT7621 PCIe host controller driver").
Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Reviewed-and-Tested-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/pci/controller/Kconfig

index 93b1411105373cd21fe4625bca0e339e8f446c66..7fc5135ffbbfd49be057fe5c33e68d38175d368d 100644 (file)
@@ -332,8 +332,8 @@ config PCIE_APPLE
          If unsure, say Y if you have an Apple Silicon system.
 
 config PCIE_MT7621
-       tristate "MediaTek MT7621 PCIe Controller"
-       depends on (RALINK && SOC_MT7621) || (MIPS && COMPILE_TEST)
+       bool "MediaTek MT7621 PCIe Controller"
+       depends on SOC_MT7621 || (MIPS && COMPILE_TEST)
        select PHY_MT7621_PCI
        default SOC_MT7621
        help