summaryrefslogtreecommitdiff
path: root/hid/lib/drivers-avr/usb/keymap.h
diff options
context:
space:
mode:
authorMaxim Devaev <[email protected]>2022-07-22 08:43:27 +0300
committerMaxim Devaev <[email protected]>2022-07-22 08:43:27 +0300
commitd3dbf19399c09399fce96d5303fe684d2aeb1150 (patch)
treeca86b92dd148d544109254aa41cf529f7531a875 /hid/lib/drivers-avr/usb/keymap.h
parent3ba15e824e319926c810414b44fb30a7d98419c3 (diff)
avr hid: removed KEY_ERROR_UNDEFINED
Diffstat (limited to 'hid/lib/drivers-avr/usb/keymap.h')
-rw-r--r--hid/lib/drivers-avr/usb/keymap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/hid/lib/drivers-avr/usb/keymap.h b/hid/lib/drivers-avr/usb/keymap.h
index 2a37b8d9..dd7486ed 100644
--- a/hid/lib/drivers-avr/usb/keymap.h
+++ b/hid/lib/drivers-avr/usb/keymap.h
@@ -134,6 +134,6 @@ uint8_t keymapUsb(uint8_t code) {
case 105: return 102; // Power
case 106: return 100; // IntlBackslash
case 107: return 137; // IntlYen
- default: return KEY_ERROR_UNDEFINED;
+ default: return 0;
}
}