Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/scsi/cxlflash/
Dvlun.c818 struct sisl_global_map __iomem *agm = &afu->afu_map->global; in cxlflash_restore_luntable() local
829 writeq_be(lli->lun_id[0], &agm->fc_port[0][lind]); in cxlflash_restore_luntable()
830 writeq_be(lli->lun_id[1], &agm->fc_port[1][lind]); in cxlflash_restore_luntable()
836 writeq_be(lli->lun_id[chan], &agm->fc_port[chan][lind]); in cxlflash_restore_luntable()
863 struct sisl_global_map __iomem *agm = &afu->afu_map->global; in init_luntable() local
882 writeq_be(lli->lun_id[0], &agm->fc_port[0][lind]); in init_luntable()
883 writeq_be(lli->lun_id[1], &agm->fc_port[1][lind]); in init_luntable()
899 writeq_be(lli->lun_id[chan], &agm->fc_port[chan][lind]); in init_luntable()
/linux-4.4.14/drivers/input/mouse/
Dsynaptics.c670 struct synaptics_hw_state *agm = &priv->agm; in synaptics_parse_agm() local
677 agm->w = hw->w; in synaptics_parse_agm()
678 agm->x = (((buf[4] & 0x0f) << 8) | buf[1]) << 1; in synaptics_parse_agm()
679 agm->y = (((buf[4] & 0xf0) << 4) | buf[2]) << 1; in synaptics_parse_agm()
680 agm->z = ((buf[3] & 0x30) | (buf[5] & 0x0f)) << 1; in synaptics_parse_agm()
923 const struct synaptics_hw_state *hw[2] = { sgm, &priv->agm }; in synaptics_report_mt_data()
1050 synaptics_report_semi_mt_data(dev, &hw, &priv->agm, in synaptics_process_packet()
Dsynaptics.h192 struct synaptics_hw_state agm; member