linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] input: snvs_pwrkey: Move snvs pewrkey to misc dir
@ 2023-02-27  7:19 Jacky Bai
  2023-02-27  7:19 ` [PATCH 2/2] arm64: defconfig: Update the config for snvs pwrkey Jacky Bai
  0 siblings, 1 reply; 2+ messages in thread
From: Jacky Bai @ 2023-02-27  7:19 UTC (permalink / raw)
  To: dmitry.torokhov, will, catalin.marinas, shawnguo
  Cc: linux-arm-kernel, linux-input, linux-imx

snvs pwrkey is not a traditional keyboard device,
more sense to move it into input/misc as other
pwrkey drivers.

Signed-off-by: Jacky Bai <ping.bai@nxp.com>
---
 drivers/input/keyboard/Kconfig                 | 11 -----------
 drivers/input/keyboard/Makefile                |  1 -
 drivers/input/misc/Kconfig                     | 11 +++++++++++
 drivers/input/misc/Makefile                    |  1 +
 drivers/input/{keyboard => misc}/snvs_pwrkey.c |  0
 5 files changed, 12 insertions(+), 12 deletions(-)
 rename drivers/input/{keyboard => misc}/snvs_pwrkey.c (100%)

diff --git a/drivers/input/keyboard/Kconfig b/drivers/input/keyboard/Kconfig
index 1d0c5f4c0f99..3d58d0457103 100644
--- a/drivers/input/keyboard/Kconfig
+++ b/drivers/input/keyboard/Kconfig
@@ -445,17 +445,6 @@ config KEYBOARD_MPR121
 	  To compile this driver as a module, choose M here: the
 	  module will be called mpr121_touchkey.
 
-config KEYBOARD_SNVS_PWRKEY
-	tristate "IMX SNVS Power Key Driver"
-	depends on ARCH_MXC || (COMPILE_TEST && HAS_IOMEM)
-	depends on OF
-	help
-	  This is the snvs powerkey driver for the Freescale i.MX application
-	  processors.
-
-	  To compile this driver as a module, choose M here; the
-	  module will be called snvs_pwrkey.
-
 config KEYBOARD_IMX
 	tristate "IMX keypad support"
 	depends on ARCH_MXC || COMPILE_TEST
diff --git a/drivers/input/keyboard/Makefile b/drivers/input/keyboard/Makefile
index aecef00c5d09..80eeb02aaf79 100644
--- a/drivers/input/keyboard/Makefile
+++ b/drivers/input/keyboard/Makefile
@@ -59,7 +59,6 @@ obj-$(CONFIG_KEYBOARD_QT1070)           += qt1070.o
 obj-$(CONFIG_KEYBOARD_QT2160)		+= qt2160.o
 obj-$(CONFIG_KEYBOARD_SAMSUNG)		+= samsung-keypad.o
 obj-$(CONFIG_KEYBOARD_SH_KEYSC)		+= sh_keysc.o
-obj-$(CONFIG_KEYBOARD_SNVS_PWRKEY)	+= snvs_pwrkey.o
 obj-$(CONFIG_KEYBOARD_SPEAR)		+= spear-keyboard.o
 obj-$(CONFIG_KEYBOARD_STMPE)		+= stmpe-keypad.o
 obj-$(CONFIG_KEYBOARD_STOWAWAY)		+= stowaway.o
diff --git a/drivers/input/misc/Kconfig b/drivers/input/misc/Kconfig
index 81a54a59e13c..35cb522b51cb 100644
--- a/drivers/input/misc/Kconfig
+++ b/drivers/input/misc/Kconfig
@@ -939,4 +939,15 @@ config INPUT_STPMIC1_ONKEY
 	  To compile this driver as a module, choose M here: the
 	  module will be called stpmic1_onkey.
 
+config INPUT_SNVS_PWRKEY
+	tristate "IMX SNVS Power Key Driver"
+	depends on ARCH_MXC || (COMPILE_TEST && HAS_IOMEM)
+	depends on OF
+	help
+	  This is the snvs powerkey driver for the Freescale i.MX application
+	  processors.
+
+	  To compile this driver as a module, choose M here; the
+	  module will be called snvs_pwrkey.
+
 endif
diff --git a/drivers/input/misc/Makefile b/drivers/input/misc/Makefile
index 04296a4abe8e..33de0a3b5f6a 100644
--- a/drivers/input/misc/Makefile
+++ b/drivers/input/misc/Makefile
@@ -90,3 +90,4 @@ obj-$(CONFIG_INPUT_WM831X_ON)		+= wm831x-on.o
 obj-$(CONFIG_INPUT_XEN_KBDDEV_FRONTEND)	+= xen-kbdfront.o
 obj-$(CONFIG_INPUT_YEALINK)		+= yealink.o
 obj-$(CONFIG_INPUT_IDEAPAD_SLIDEBAR)	+= ideapad_slidebar.o
+obj-$(CONFIG_INPUT_SNVS_PWRKEY)		+= snvs_pwrkey.o
diff --git a/drivers/input/keyboard/snvs_pwrkey.c b/drivers/input/misc/snvs_pwrkey.c
similarity index 100%
rename from drivers/input/keyboard/snvs_pwrkey.c
rename to drivers/input/misc/snvs_pwrkey.c
-- 
2.34.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [PATCH 2/2] arm64: defconfig: Update the config for snvs pwrkey
  2023-02-27  7:19 [PATCH 1/2] input: snvs_pwrkey: Move snvs pewrkey to misc dir Jacky Bai
@ 2023-02-27  7:19 ` Jacky Bai
  0 siblings, 0 replies; 2+ messages in thread
From: Jacky Bai @ 2023-02-27  7:19 UTC (permalink / raw)
  To: dmitry.torokhov, will, catalin.marinas, shawnguo
  Cc: linux-arm-kernel, linux-input, linux-imx

As the snvs pwrkey will be moved to input/misc dir, the build config for
snvs pwrkey also changed to follow the format in input/misc: INPUT_SNVS_PWRKEY.
defconfig need to be updated to align with this change.

Signed-off-by: Jacky Bai <ping.bai@nxp.com>
---
 arch/arm64/configs/defconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index 7e0487bbdaa0..938b4231c81f 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -405,7 +405,6 @@ CONFIG_MHI_WWAN_MBIM=m
 CONFIG_INPUT_EVDEV=y
 CONFIG_KEYBOARD_ADC=m
 CONFIG_KEYBOARD_GPIO=y
-CONFIG_KEYBOARD_SNVS_PWRKEY=m
 CONFIG_KEYBOARD_IMX_SC_KEY=m
 CONFIG_KEYBOARD_CROS_EC=y
 CONFIG_MOUSE_ELAN_I2C=m
@@ -420,6 +419,7 @@ CONFIG_INPUT_PM8XXX_VIBRATOR=m
 CONFIG_INPUT_PWM_BEEPER=m
 CONFIG_INPUT_PWM_VIBRA=m
 CONFIG_INPUT_HISI_POWERKEY=y
+CONFIG_INPUT_SNVS_PWRKEY=m
 # CONFIG_SERIO_SERPORT is not set
 CONFIG_SERIO_AMBAKMI=y
 CONFIG_LEGACY_PTY_COUNT=16
-- 
2.34.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-02-27  7:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-27  7:19 [PATCH 1/2] input: snvs_pwrkey: Move snvs pewrkey to misc dir Jacky Bai
2023-02-27  7:19 ` [PATCH 2/2] arm64: defconfig: Update the config for snvs pwrkey Jacky Bai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).