Lines Matching defs:resp
316 unsigned int resp;
327 err = regmap_read(data->regmap, SI1133_REG_RESPONSE0, &resp);
334 if ((resp & SI1133_MAX_CMD_CTR) == SI1133_MAX_CMD_CTR)
338 dev_warn(dev, "Timeout on reset ctr resp: %d\n", resp);
349 static int si1133_parse_response_err(struct device *dev, u32 resp, u8 cmd)
351 resp &= 0xF;
353 switch (resp) {
390 u32 resp;
415 err = regmap_read(data->regmap, SI1133_REG_RESPONSE0, &resp);
420 SI1133_REG_RESPONSE0, resp,
421 (resp & SI1133_CMD_SEQ_MASK) ==
423 (resp & SI1133_CMD_ERR_MASK),
434 if (resp & SI1133_CMD_ERR_MASK) {
435 err = si1133_parse_response_err(dev, resp, cmd);