Lines Matching +full:multi +full:- +full:pmic
1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2014 Texas Instruments Incorporated - http://www.ti.com
10 #include <power/pmic.h>
18 * tps62362_voltage_update() - Function to change a voltage level, as this
19 * is a multi-step process.
33 return -ENODEV; in tps62362_voltage_update()
42 struct pmic *p = pmic_alloc(); in power_tps62362_init()
46 return -ENOMEM; in power_tps62362_init()
49 p->name = name; in power_tps62362_init()
50 p->interface = PMIC_I2C; in power_tps62362_init()
51 p->number_of_regs = TPS62362_NUM_REGS; in power_tps62362_init()
52 p->hw.i2c.addr = TPS62362_I2C_ADDR; in power_tps62362_init()
53 p->hw.i2c.tx_num = 1; in power_tps62362_init()
54 p->bus = bus; in power_tps62362_init()