forked from Mirrors/opensbi
platform: sifive_fu740: do not use a global in da9063_reset/shutdown
da9063_reset() and da9063_shutdown() take the chip address in argument (like similar functions), but in practice use the da9063 global struct instead. Fix that. Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> Reviewed-by: Nikita Shubin <n.shubin@yadro.com> Reviewed-by: Anup Patel <anup@brainfault.org> Reviewed-by: Xiang W <wxjstz@126.com>
This commit is contained in:

committed by
Anup Patel

parent
6dde43584f
commit
8257262dbf
@@ -81,32 +81,32 @@ static inline int da9063_sanity_check(struct i2c_adapter *adap, uint32_t reg)
|
|||||||
|
|
||||||
static inline int da9063_shutdown(struct i2c_adapter *adap, uint32_t reg)
|
static inline int da9063_shutdown(struct i2c_adapter *adap, uint32_t reg)
|
||||||
{
|
{
|
||||||
int rc = i2c_adapter_reg_write(adap, da9063.reg,
|
int rc = i2c_adapter_reg_write(adap, reg,
|
||||||
DA9063_REG_PAGE_CON, 0x00);
|
DA9063_REG_PAGE_CON, 0x00);
|
||||||
|
|
||||||
if (rc)
|
if (rc)
|
||||||
return rc;
|
return rc;
|
||||||
|
|
||||||
return i2c_adapter_reg_write(adap, da9063.reg,
|
return i2c_adapter_reg_write(adap, reg,
|
||||||
DA9063_REG_CONTROL_F,
|
DA9063_REG_CONTROL_F,
|
||||||
DA9063_CONTROL_F_SHUTDOWN);
|
DA9063_CONTROL_F_SHUTDOWN);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int da9063_reset(struct i2c_adapter *adap, uint32_t reg)
|
static inline int da9063_reset(struct i2c_adapter *adap, uint32_t reg)
|
||||||
{
|
{
|
||||||
int rc = i2c_adapter_reg_write(adap, da9063.reg,
|
int rc = i2c_adapter_reg_write(adap, reg,
|
||||||
DA9063_REG_PAGE_CON, 0x00);
|
DA9063_REG_PAGE_CON, 0x00);
|
||||||
|
|
||||||
if (rc)
|
if (rc)
|
||||||
return rc;
|
return rc;
|
||||||
|
|
||||||
rc = i2c_adapter_reg_write(adap, da9063.reg,
|
rc = i2c_adapter_reg_write(adap, reg,
|
||||||
DA9063_REG_CONTROL_F,
|
DA9063_REG_CONTROL_F,
|
||||||
DA9063_CONTROL_F_WAKEUP);
|
DA9063_CONTROL_F_WAKEUP);
|
||||||
if (rc)
|
if (rc)
|
||||||
return rc;
|
return rc;
|
||||||
|
|
||||||
return i2c_adapter_reg_write(adap, da9063.reg,
|
return i2c_adapter_reg_write(adap, reg,
|
||||||
DA9063_REG_CONTROL_A,
|
DA9063_REG_CONTROL_A,
|
||||||
DA9063_CONTROL_A_M_POWER1_EN |
|
DA9063_CONTROL_A_M_POWER1_EN |
|
||||||
DA9063_CONTROL_A_M_POWER_EN |
|
DA9063_CONTROL_A_M_POWER_EN |
|
||||||
|
Reference in New Issue
Block a user