Lines Matching full:buttons
41 * @bs_idev: The input device for non-matrix buttons and switches (or NULL).
81 /* Buttons */
197 * cros_ec_keyb_report_bs - Report non-matrixed buttons or switches
199 * This takes a bitmap of buttons or switches from the EC and reports events,
204 * @mask: A bitmap of buttons from the EC.
270 &ckdev->ec->event_data.data.buttons); in cros_ec_keyb_work()
378 * kernel. Note that we don't query for buttons because they are more
423 * cros_ec_keyb_register_bs - Register non-matrix buttons/switches
425 * Handles all the bits of the keyboard driver related to non-matrix buttons
429 * If this device has no support for buttons and switches we'll return no error
443 u32 buttons; in cros_ec_keyb_register_bs() local
450 sizeof(event_data.buttons)); in cros_ec_keyb_register_bs()
453 buttons = get_unaligned_le32(&event_data.buttons); in cros_ec_keyb_register_bs()
462 if (!buttons && !switches) in cros_ec_keyb_register_bs()
466 * We call the non-matrix buttons/switches 'input1', if present. in cros_ec_keyb_register_bs()
493 if ((map->ev_type == EV_KEY && (buttons & BIT(map->bit))) || in cros_ec_keyb_register_bs()