Home
last modified time | relevance | path

Searched refs:agm (Results 1 – 2 of 2) sorted by relevance

/openbmc/linux/drivers/input/mouse/
H A Dsynaptics.c741 struct synaptics_hw_state *agm = &priv->agm; in synaptics_parse_agm() local
748 agm->w = hw->w; in synaptics_parse_agm()
749 agm->x = (((buf[4] & 0x0f) << 8) | buf[1]) << 1; in synaptics_parse_agm()
750 agm->y = (((buf[4] & 0xf0) << 4) | buf[2]) << 1; in synaptics_parse_agm()
751 agm->z = ((buf[3] & 0x30) | (buf[5] & 0x0f)) << 1; in synaptics_parse_agm()
994 const struct synaptics_hw_state *hw[2] = { sgm, &priv->agm }; in synaptics_report_mt_data()
1134 synaptics_report_semi_mt_data(dev, &hw, &priv->agm, in synaptics_process_packet()
H A Dsynaptics.h196 struct synaptics_hw_state agm; member