POWER: MAX77686: Modified as per the latest Implementation
Moved the pmic_max77686.c max77686_pmic.h to drivers/power and made required changes accordingly Signed-off-by: Rajeshwari Shinde <rajeshwari.s@samsung.com> Reviewed-by: Lukasz Majewski <l.majewski@samsung.com> Acked-by: Lukasz Majewski <l.majewski@samsung.com> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
This commit is contained in:
parent
48e91caefe
commit
857765e9aa
|
@ -28,6 +28,7 @@ LIB := $(obj)libpmic.o
|
|||
COBJS-$(CONFIG_POWER_MAX8998) += pmic_max8998.o
|
||||
COBJS-$(CONFIG_POWER_MAX8997) += pmic_max8997.o
|
||||
COBJS-$(CONFIG_POWER_MUIC_MAX8997) += muic_max8997.o
|
||||
COBJS-$(CONFIG_POWER_MAX77686) += pmic_max77686.o
|
||||
|
||||
COBJS := $(COBJS-y)
|
||||
SRCS := $(COBJS:.o=.c)
|
||||
|
|
|
@ -22,13 +22,19 @@
|
|||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <pmic.h>
|
||||
#include <max77686_pmic.h>
|
||||
#include <power/pmic.h>
|
||||
#include <power/max77686_pmic.h>
|
||||
#include <errno.h>
|
||||
|
||||
int pmic_init(void)
|
||||
int pmic_init(unsigned char bus)
|
||||
{
|
||||
struct pmic *p = get_pmic();
|
||||
static const char name[] = "MAX77686_PMIC";
|
||||
struct pmic *p = pmic_alloc();
|
||||
|
||||
if (!p) {
|
||||
printf("%s: POWER allocation error!\n", __func__);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
puts("Board PMIC init\n");
|
||||
p->name = name;
|
||||
|
@ -36,7 +42,7 @@ int pmic_init(void)
|
|||
p->number_of_regs = PMIC_NUM_OF_REGS;
|
||||
p->hw.i2c.addr = MAX77686_I2C_ADDR;
|
||||
p->hw.i2c.tx_num = 1;
|
||||
p->bus = I2C_PMIC;
|
||||
p->bus = bus;
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue