Lines Matching refs:tps65912
25 struct tps65912 *tps65912; member
34 struct tps65912 *tps65912 = tps65912_gpio->tps65912; in tps65912_gpio_get() local
37 val = tps65912_reg_read(tps65912, TPS65912_GPIO1 + offset); in tps65912_gpio_get()
49 struct tps65912 *tps65912 = tps65912_gpio->tps65912; in tps65912_gpio_set() local
52 tps65912_set_bits(tps65912, TPS65912_GPIO1 + offset, in tps65912_gpio_set()
55 tps65912_clear_bits(tps65912, TPS65912_GPIO1 + offset, in tps65912_gpio_set()
63 struct tps65912 *tps65912 = tps65912_gpio->tps65912; in tps65912_gpio_output() local
68 return tps65912_set_bits(tps65912, TPS65912_GPIO1 + offset, in tps65912_gpio_output()
75 struct tps65912 *tps65912 = tps65912_gpio->tps65912; in tps65912_gpio_input() local
77 return tps65912_clear_bits(tps65912, TPS65912_GPIO1 + offset, in tps65912_gpio_input()
95 struct tps65912 *tps65912 = dev_get_drvdata(pdev->dev.parent); in tps65912_gpio_probe() local
96 struct tps65912_board *pdata = dev_get_platdata(tps65912->dev); in tps65912_gpio_probe()
105 tps65912_gpio->tps65912 = tps65912; in tps65912_gpio_probe()