Lines Matching defs:value
390 unsigned int value;
396 ret = regmap_read(pctl->regmap, pctl->data->reg_dir, &value);
400 if (value & BIT(offset))
409 unsigned int value;
415 ret = regmap_read(pctl->regmap, pctl->data->reg_data, &value);
419 return !!(value & BIT(offset));
423 int value)
426 BIT(offset), value ? BIT(offset) : 0);
430 int value)
434 (value ? 0x1f : 0x10));
438 int value)
443 sx150x_gpio_oscio_set(pctl, value);
445 __sx150x_gpio_set(pctl, offset, value);
471 unsigned int offset, int value)
477 return sx150x_gpio_oscio_set(pctl, value);
479 ret = __sx150x_gpio_set(pctl, offset, value);
864 u8 reg, value;
869 value = SX150X_789_REG_MISC_AUTOCLEAR_OFF;
873 value = 0x00;
884 value = 0x00;
891 return regmap_write(pctl->regmap, reg, value);