Lines Matching refs:temp
119 int temp;
122 temp = spi_w8r16(st->spi, cmd);
123 if (temp < 0) {
124 ret = temp;
128 *val = sign_extend32(temp, 15);
140 int temp;
143 temp = spi_w8r16(st->spi, cmd);
144 if (temp < 0) {
145 ret = temp;
150 *val = sign_extend32(temp, 11);
162 short temp;
165 temp = spi_w8r8(st->spi, cmd);
166 if (temp < 0) {
167 ret = temp;
171 *val = FIELD_GET(ADXRS290_LPF_MASK, temp);
172 *val2 = FIELD_GET(ADXRS290_HPF_MASK, temp);