aboutsummaryrefslogtreecommitdiff
path: root/drivers/input
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-08-19 14:58:00 -0400
committerTom Rini <trini@konsulko.com>2021-08-30 14:13:28 -0400
commitb21f965bb055cd7eede411e489d886122c63d04a (patch)
tree1642f9412291039e5b5d7aa0e63dea89fb88ba0e /drivers/input
parent7ae1b0804d8837ecec14538f18903793d187f328 (diff)
downloadu-boot-b21f965bb055cd7eede411e489d886122c63d04a.zip
u-boot-b21f965bb055cd7eede411e489d886122c63d04a.tar.gz
u-boot-b21f965bb055cd7eede411e489d886122c63d04a.tar.bz2
i8042: Do not abuse CONFIG namespace
This driver uses the CONFIG namespace to set the chips internal CONFIG namespace related bits. However, CONFIG is reserved for the top-level Kconfig based configuration system. Use CFG as the namespace here instead to avoid pollution. Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers/input')
-rw-r--r--drivers/input/i8042.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/input/i8042.c b/drivers/input/i8042.c
index 565d99e..d3743dc 100644
--- a/drivers/input/i8042.c
+++ b/drivers/input/i8042.c
@@ -150,8 +150,8 @@ static int kbd_reset(int quirk)
else if ((quirk & QUIRK_DUP_POR) && config == KBD_POR)
config = kbd_cmd_read(CMD_RD_CONFIG);
- config |= CONFIG_AT_TRANS;
- config &= ~(CONFIG_KIRQ_EN | CONFIG_MIRQ_EN);
+ config |= CFG_AT_TRANS;
+ config &= ~(CFG_KIRQ_EN | CFG_MIRQ_EN);
if (kbd_cmd_write(CMD_WR_CONFIG, config))
goto err;