Lines Matching defs:psm_ident
108 convert_hw_info(const synapticshw_t * psm_ident,
112 synhw->model_id = ((psm_ident->infoRot180 << 23) |
113 (psm_ident->infoPortrait << 22) |
114 (psm_ident->infoSensor << 16) |
115 (psm_ident->infoHardware << 9) |
116 (psm_ident->infoNewAbs << 7) |
117 (psm_ident->capPen << 6) |
118 (psm_ident->infoSimplC << 5) |
119 (psm_ident->infoGeometry));
120 synhw->capabilities = ((psm_ident->capExtended << 23) |
121 (psm_ident->capPassthrough << 7) |
122 (psm_ident->capSleep << 4) |
123 (psm_ident->capFourButtons << 3) |
124 (psm_ident->capMultiFinger << 1) |
125 (psm_ident->capPalmDetect));
127 synhw->identity = ((psm_ident->infoMajor) |
128 (0x47 << 8) | (psm_ident->infoMinor << 16));
134 synapticshw_t psm_ident;
150 if (!psm_synaptics_identify(pInfo->fd, &psm_ident))
153 convert_hw_info(&psm_ident, synhw);