armbian_build/patch/kernel/archive/sunxi-6.6/patches.megous/input-pinephone-keyboard-Allow-disabling-the-keyboard-input.patch
The-going 25b0741531 sunxi-6.6: megous patches: revert commit changes e103e2e1da
Undo changes that are made massively and create a lot of noise.
e103e2e1da
2025-01-19 20:22:11 +01:00

41 lines
1.2 KiB
Diff

From 1ee7c81e2b5cc36fa4306d7c8cefe35fee950751 Mon Sep 17 00:00:00 2001
From: Ondrej Jirman <megi@xff.cz>
Date: Wed, 22 Jun 2022 01:05:43 +0200
Subject: input: pinephone-keyboard: Allow disabling the keyboard input
This is useful when the user wants to use a userspace implementation.
Signed-off-by: Ondrej Jirman <megi@xff.cz>
---
drivers/input/keyboard/pinephone-keyboard.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/drivers/input/keyboard/pinephone-keyboard.c b/drivers/input/keyboard/pinephone-keyboard.c
index 147b1f288a33..365037d8609d 100644
--- a/drivers/input/keyboard/pinephone-keyboard.c
+++ b/drivers/input/keyboard/pinephone-keyboard.c
@@ -15,6 +15,10 @@
#include <linux/regulator/consumer.h>
#include <linux/types.h>
+static bool disable_input;
+module_param(disable_input, bool, S_IRUGO);
+MODULE_PARM_DESC(disable_input, "Disable the keyboard part of the driver");
+
#define DRV_NAME "pinephone-keyboard"
#define PPKB_CRC8_POLYNOMIAL 0x07
@@ -388,6 +392,9 @@ static int ppkb_probe(struct i2c_client *client)
}
}
+ if (disable_input)
+ return 0;
+
crc8_populate_msb(ppkb->crc_table, PPKB_CRC8_POLYNOMIAL);
ppkb->input = devm_input_allocate_device(dev);
--
2.35.3