[PATCH net-next] staging: irda: force to be a kernel module

From: Greg Kroah-Hartman
Date: Tue Aug 29 2017 - 05:14:16 EST


Now that the IRDA networking code has moved into drivers/staging/, the
link order is changed for when it is initialized if built into the
system. This can cause a crash when initializing as the netfilter core
hasn't been initialized yet.

So force the IRDA code to be built as a module, preventing the crash.

Reported-by: kernel test robot <fengguang.wu@xxxxxxxxx>
Signed-off-by: Greg Kroah-Hartman gregkh@xxxxxxxxxxxxxxxxxxx
---
drivers/staging/irda/net/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/irda/net/Kconfig b/drivers/staging/irda/net/Kconfig
index 6abeae6c666a..9c6489bcb596 100644
--- a/drivers/staging/irda/net/Kconfig
+++ b/drivers/staging/irda/net/Kconfig
@@ -3,7 +3,7 @@
#

menuconfig IRDA
- depends on NET && !S390
+ depends on NET && !S390 && m
tristate "IrDA (infrared) subsystem support"
select CRC_CCITT
---help---
--
2.14.1