From 3fceaf10a93380b47f95fb4dce5c993995213e06 Mon Sep 17 00:00:00 2001 From: "chao.an" Date: Fri, 7 Jan 2022 15:39:29 +0800 Subject: [PATCH] drivers/ioexpander: fix the kconfig warning drivers/ioexpander/Kconfig:28: warning: config symbol 'IOEXPANDER_RPMSG_INT_NCALLBACKS' uses select, but is not boolean or tristate Signed-off-by: chao.an --- drivers/ioexpander/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/ioexpander/Kconfig b/drivers/ioexpander/Kconfig index 18b3336c5f..856bcfb368 100644 --- a/drivers/ioexpander/Kconfig +++ b/drivers/ioexpander/Kconfig @@ -17,6 +17,7 @@ if IOEXPANDER config IOEXPANDER_RPMSG bool "IO expander rpmsg server and client" default n + select IOEXPANDER_INT_ENABLE ---help--- This settings enable ioexpander rpmsg server and client. @@ -25,7 +26,6 @@ if IOEXPANDER_RPMSG config IOEXPANDER_RPMSG_INT_NCALLBACKS int "number of ioexpander rpmsg interrupt callbacks" default 32 - select IOEXPANDER_INT_ENABLE ---help--- This set the IO expander number in interrupt callbacks.