On 2018-07-13 09:51 AM, Alexander Sverdlin wrote:
Cavium Octeon is an example of the SoC where RAPIDIO works without PCI.
So drop the unnecessary dependency.
Signed-off-by: Alexander Sverdlin <alexander.sverdlin@xxxxxxxxx>
---
arch/mips/Kconfig | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig
index 08c10c518f83..ac8a63d02391 100644
--- a/arch/mips/Kconfig
+++ b/arch/mips/Kconfig
@@ -3117,7 +3117,6 @@ source "drivers/pcmcia/Kconfig"
config RAPIDIO
tristate "RapidIO support"
- depends on PCI
default n
help
If you say Y here, the kernel will include drivers and
Please consider using approach similar to config options in arch/powerpc
branch (search for HAS_RAPIDIO). This will allow better handling of SoC
configurations, e.g. forcing built-in code instead of building a module.
Also it will keep the same style for supported architectures. ARM uses
the same as well - patch is on its way.