Lines Matching refs:pcf
33 int pcf50633_gpio_set(struct pcf50633 *pcf, int gpio, u8 val)
39 return pcf50633_reg_set_bit_mask(pcf, reg, 0x07, val);
43 u8 pcf50633_gpio_get(struct pcf50633 *pcf, int gpio)
48 val = pcf50633_reg_read(pcf, reg) & 0x07;
54 int pcf50633_gpio_invert_set(struct pcf50633 *pcf, int gpio, int invert)
61 return pcf50633_reg_set_bit_mask(pcf, reg, 1 << 3, val);
65 int pcf50633_gpio_invert_get(struct pcf50633 *pcf, int gpio)
70 val = pcf50633_reg_read(pcf, reg);
76 int pcf50633_gpio_power_supply_set(struct pcf50633 *pcf,
87 return pcf50633_reg_set_bit_mask(pcf, reg, mask, val);