Adding member variables for USB internal LDOs in twl4030_platform_data and registering them in twl-core.c if the variables are populated from board-evm file. Signed-off-by: Anuj Aggarwal <anuj.aggarwal@xxxxxx> --- drivers/mfd/twl-core.c | 12 ++++++++++++ include/linux/i2c/twl.h | 4 ++++ 2 files changed, 16 insertions(+), 0 deletions(-) diff --git a/drivers/mfd/twl-core.c b/drivers/mfd/twl-core.c index 2a76065..6cde051 100644 --- a/drivers/mfd/twl-core.c +++ b/drivers/mfd/twl-core.c @@ -791,6 +791,18 @@ add_children(struct twl4030_platform_data *pdata, unsigned long features) child = add_regulator(TWL4030_REG_VAUX4, pdata->vaux4); if (IS_ERR(child)) return PTR_ERR(child); + + child = add_regulator(TWL4030_REG_VUSB1V5, pdata->vusb1v5); + if (IS_ERR(child)) + return PTR_ERR(child); + + child = add_regulator(TWL4030_REG_VUSB1V8, pdata->vusb1v8); + if (IS_ERR(child)) + return PTR_ERR(child); + + child = add_regulator(TWL4030_REG_VUSB3V1, pdata->vusb3v1); + if (IS_ERR(child)) + return PTR_ERR(child); } /* twl6030 regulators */ diff --git a/include/linux/i2c/twl.h b/include/linux/i2c/twl.h index bf1c5be..7be0b34 100644 --- a/include/linux/i2c/twl.h +++ b/include/linux/i2c/twl.h @@ -578,6 +578,10 @@ struct twl4030_platform_data { struct regulator_init_data *vintana1; struct regulator_init_data *vintana2; struct regulator_init_data *vintdig; + struct regulator_init_data *vusb1v5; + struct regulator_init_data *vusb1v8; + struct regulator_init_data *vusb3v1; + /* TWL6030 LDO regulators */ struct regulator_init_data *vmmc; struct regulator_init_data *vpp; -- 1.6.2.4 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html