Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit afdb5cce authored by Hans de Goede's avatar Hans de Goede Committed by Jiri Kosina
Browse files

HID: input: Map unknown consumer page codes to KEY_UNKNOWN



Currently unknown consumer page codes are ignored, which means that they cannot
later be mapped from userspace using udev / hwdb. Map them to KEY_UNKNOWN, so
that userspace can remap them for keyboards which make up their own consumer
page codes.

Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 39520eea
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -862,7 +862,7 @@ static void hidinput_configure_usage(struct hid_input *hidinput, struct hid_fiel
		case 0x28b: map_key_clear(KEY_FORWARDMAIL);	break;
		case 0x28c: map_key_clear(KEY_SEND);		break;

		default:    goto ignore;
		default: map_key_clear(KEY_UNKNOWN);
		}
		break;