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>
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user