Lines Matching full:buttons
45 * @bs_idev: The input device for non-matrix buttons and switches (or NULL).
90 /* Buttons */
206 * cros_ec_keyb_report_bs - Report non-matrixed buttons or switches
208 * This takes a bitmap of buttons or switches from the EC and reports events,
213 * @mask: A bitmap of buttons from the EC.
279 &ckdev->ec->event_data.data.buttons); in cros_ec_keyb_work()
387 * kernel. Note that we don't query for buttons because they are more
432 * cros_ec_keyb_register_bs - Register non-matrix buttons/switches
434 * Handles all the bits of the keyboard driver related to non-matrix buttons
438 * If this device has no support for buttons and switches we'll return no error
452 u32 buttons; in cros_ec_keyb_register_bs() local
459 sizeof(event_data.buttons)); in cros_ec_keyb_register_bs()
462 buttons = get_unaligned_le32(&event_data.buttons); in cros_ec_keyb_register_bs()
471 if (!buttons && !switches) in cros_ec_keyb_register_bs()
475 * We call the non-matrix buttons/switches 'input1', if present. in cros_ec_keyb_register_bs()
502 if ((map->ev_type == EV_KEY && (buttons & BIT(map->bit))) || in cros_ec_keyb_register_bs()