Lines Matching full:buttons
41 * @bs_idev: The input device for non-matrix buttons and switches (or NULL).
81 /* Buttons */
196 * cros_ec_keyb_report_bs - Report non-matrixed buttons or switches
198 * This takes a bitmap of buttons or switches from the EC and reports events,
203 * @mask: A bitmap of buttons from the EC.
269 &ckdev->ec->event_data.data.buttons); in cros_ec_keyb_work()
381 * kernel. Note that we don't query for buttons because they are more
426 * cros_ec_keyb_register_bs - Register non-matrix buttons/switches
428 * Handles all the bits of the keyboard driver related to non-matrix buttons
432 * If this device has no support for buttons and switches we'll return no error
446 u32 buttons; in cros_ec_keyb_register_bs() local
453 sizeof(event_data.buttons)); in cros_ec_keyb_register_bs()
456 buttons = get_unaligned_le32(&event_data.buttons); in cros_ec_keyb_register_bs()
465 if (!buttons && !switches) in cros_ec_keyb_register_bs()
469 * We call the non-matrix buttons/switches 'input1', if present. in cros_ec_keyb_register_bs()
496 if ((map->ev_type == EV_KEY && (buttons & BIT(map->bit))) || in cros_ec_keyb_register_bs()