summaryrefslogtreecommitdiff
path: root/drivers/input/keyboard/cap11xx.c
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2023-10-01 01:43:38 +0200
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2023-12-12 21:39:09 -0800
commit39bd68d422ba085997fb1f26160d7c686915b3cb (patch)
tree389c33de9430a0088e8094f3667b81b1cdc86c72 /drivers/input/keyboard/cap11xx.c
parent2e3ae00021901461455b6a9ff4ef850817e9ab6d (diff)
Input: cap11xx - cache hardware ID registers
The cap11xx devices have three hardware identification registers which are currently marked as volatile, preventing caching of those registers. This is not ideal since the registers should never change at runtime, we should be able to cache the value after the first read. Stop marking the registers as volatile, we don't have register defaults specified in the driver so this will result in reading from the hardware on first use. Signed-off-by: Mark Brown <broonie@kernel.org> Link: https://lore.kernel.org/r/20231001-input-maple-v1-1-ed3716051431@kernel.org Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/keyboard/cap11xx.c')
-rw-r--r--drivers/input/keyboard/cap11xx.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/input/keyboard/cap11xx.c b/drivers/input/keyboard/cap11xx.c
index ebcbc00d2059..8e25d7d5e64d 100644
--- a/drivers/input/keyboard/cap11xx.c
+++ b/drivers/input/keyboard/cap11xx.c
@@ -173,9 +173,6 @@ static bool cap11xx_volatile_reg(struct device *dev, unsigned int reg)
case CAP11XX_REG_SENOR_DELTA(3):
case CAP11XX_REG_SENOR_DELTA(4):
case CAP11XX_REG_SENOR_DELTA(5):
- case CAP11XX_REG_PRODUCT_ID:
- case CAP11XX_REG_MANUFACTURER_ID:
- case CAP11XX_REG_REVISION:
return true;
}