Home
last modified time | relevance | path

Searched refs:key_val (Results 1 – 4 of 4) sorted by relevance

/linux/drivers/input/keyboard/
H A Dadp5588-keys.c481 static void adp5588_gpio_irq_handle(struct adp5588_kpad *kpad, int key_val, in adp5588_gpio_irq_handle() argument
484 unsigned int irq, gpio = key_val - GPI_PIN_BASE, irq_type; in adp5588_gpio_irq_handle()
492 dev_err(&client->dev, "Could not get hwirq for key(%u)\n", key_val); in adp5588_gpio_irq_handle()
523 int key_val = key & KEY_EV_MASK; in adp5588_report_events() local
526 if (key_val >= GPI_PIN_BASE && key_val <= GPI_PIN_END) { in adp5588_report_events()
528 adp5588_gpio_irq_handle(kpad, key_val, key_press); in adp5588_report_events()
530 int row = (key_val - 1) / ADP5588_COLS_MAX; in adp5588_report_events()
531 int col = (key_val - 1) % ADP5588_COLS_MAX; in adp5588_report_events()
536 key_val, row, col, kpad->keycode[code]); in adp5588_report_events()
H A Dmpr121_touchkey.c112 unsigned int key_val, pressed; in mpr_touchkey_report() local
115 key_val = mpr121->keycodes[key_num]; in mpr_touchkey_report()
118 input_report_key(input, key_val, pressed); in mpr_touchkey_report()
120 dev_dbg(&client->dev, "key %d %d %s\n", key_num, key_val, in mpr_touchkey_report()
/linux/net/sched/
H A Dcls_flower.c888 struct flow_dissector_key_mpls *key_val, in fl_set_key_port_range()
922 dissector_set_mpls_lse(key_val, lse_index); in fl_set_key_mpls_lse()
925 lse_val = &key_val->ls[lse_index]; in fl_set_key_mpls_lse()
973 struct flow_dissector_key_mpls *key_val, in fl_set_key_mpls_lse()
994 err = fl_set_key_mpls_lse(nla_lse, key_val, key_mask, extack); in fl_set_key_mpls_opts()
1008 struct flow_dissector_key_mpls *key_val, in fl_set_key_mpls_opts()
1027 key_val, key_mask, extack); in fl_set_key_mpls()
1030 lse_val = &key_val->ls[0]; in fl_set_key_mpls()
1036 dissector_set_mpls_lse(key_val, 0); in fl_set_key_mpls()
1050 dissector_set_mpls_lse(key_val, in fl_set_key_mpls()
892 fl_set_key_mpls_lse(const struct nlattr * nla_lse,struct flow_dissector_key_mpls * key_val,struct flow_dissector_key_mpls * key_mask,struct netlink_ext_ack * extack) fl_set_key_mpls_lse() argument
977 fl_set_key_mpls_opts(const struct nlattr * nla_mpls_opts,struct flow_dissector_key_mpls * key_val,struct flow_dissector_key_mpls * key_mask,struct netlink_ext_ack * extack) fl_set_key_mpls_opts() argument
1012 fl_set_key_mpls(struct nlattr ** tb,struct flow_dissector_key_mpls * key_val,struct flow_dissector_key_mpls * key_mask,struct netlink_ext_ack * extack) fl_set_key_mpls() argument
1092 fl_set_key_vlan(struct nlattr ** tb,__be16 ethertype,int vlan_id_key,int vlan_prio_key,int vlan_next_eth_type_key,struct flow_dissector_key_vlan * key_val,struct flow_dissector_key_vlan * key_mask) fl_set_key_vlan() argument
1120 fl_set_key_pppoe(struct nlattr ** tb,struct flow_dissector_key_pppoe * key_val,struct flow_dissector_key_pppoe * key_mask,struct fl_flow_key * key,struct fl_flow_key * mask) fl_set_key_pppoe() argument
[all...]
/linux/drivers/mfd/
H A Dadp5585.c488 unsigned long key_val, key_press; in adp5585_report_events() local
496 key_val = FIELD_GET(ADP5585_KEY_EVENT_MASK, key); in adp5585_report_events()
499 blocking_notifier_call_chain(&adp5585->event_notifier, key_val, (void *)key_press); in adp5585_report_events()