|
@@ -134,7 +134,8 @@ static const unsigned short atkbd_unxlate_table[128] = {
|
|
|
#define ATKBD_CMD_GETID 0x02f2
|
|
|
#define ATKBD_CMD_SETREP 0x10f3
|
|
|
#define ATKBD_CMD_ENABLE 0x00f4
|
|
|
-#define ATKBD_CMD_RESET_DIS 0x00f5
|
|
|
+#define ATKBD_CMD_RESET_DIS 0x00f5 /* Reset to defaults and disable */
|
|
|
+#define ATKBD_CMD_RESET_DEF 0x00f6 /* Reset to defaults */
|
|
|
#define ATKBD_CMD_SETALL_MBR 0x00fa
|
|
|
#define ATKBD_CMD_RESET_BAT 0x02ff
|
|
|
#define ATKBD_CMD_RESEND 0x00fe
|
|
@@ -836,7 +837,7 @@ static void atkbd_cleanup(struct serio *serio)
|
|
|
struct atkbd *atkbd = serio_get_drvdata(serio);
|
|
|
|
|
|
atkbd_disable(atkbd);
|
|
|
- ps2_command(&atkbd->ps2dev, NULL, ATKBD_CMD_RESET_BAT);
|
|
|
+ ps2_command(&atkbd->ps2dev, NULL, ATKBD_CMD_RESET_DEF);
|
|
|
}
|
|
|
|
|
|
|