From: Ɓukasz Majewski Date: Tue, 13 Nov 2012 03:21:54 +0000 (+0000) Subject: pmic:max8997: Switch the MAX8997 PMIC to be used with multibus I2C X-Git-Tag: v2013.01-rc2~140^2~27 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=452329f1d57fe7cbc54e65617e84d5bb1f93f631;p=u-boot pmic:max8997: Switch the MAX8997 PMIC to be used with multibus I2C PMIC MAX8997 is now ready to work with single and multibus soft I2C implementation. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park --- diff --git a/drivers/misc/pmic_max8997.c b/drivers/misc/pmic_max8997.c index 62dbc05311..4943f667b5 100644 --- a/drivers/misc/pmic_max8997.c +++ b/drivers/misc/pmic_max8997.c @@ -24,6 +24,7 @@ #include #include #include +#include int pmic_init(void) { @@ -37,7 +38,7 @@ int pmic_init(void) p->number_of_regs = PMIC_NUM_OF_REGS; p->hw.i2c.addr = MAX8997_I2C_ADDR; p->hw.i2c.tx_num = 1; - p->bus = I2C_PMIC; + p->bus = I2C_0; return 0; }