summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Long <dave.long@linaro.org>2012-03-20 23:25:25 +0800
committerAndy Green <andy.green@linaro.org>2012-06-20 10:27:49 +0800
commitceca008fcfc4f27527b028a27072aa17d6fd8c35 (patch)
tree25be650be9861f519ee880b0f0d43e9a1e1e4b70
parentf0e537b09f9783d8e1f791037e801686155cd5dd (diff)
PATCH Remove usage of omap_chip field from omap_pmic_map struct.eml
Signed-off-by: Dave Long <dave.long@linaro.org>
-rw-r--r--arch/arm/mach-omap2/omap_tps6236x.c1
-rw-r--r--arch/arm/mach-omap2/omap_twl4030.c8
2 files changed, 0 insertions, 9 deletions
diff --git a/arch/arm/mach-omap2/omap_tps6236x.c b/arch/arm/mach-omap2/omap_tps6236x.c
index 83f983bd7d2..f63c67b909d 100644
--- a/arch/arm/mach-omap2/omap_tps6236x.c
+++ b/arch/arm/mach-omap2/omap_tps6236x.c
@@ -264,7 +264,6 @@ out:
static __initdata struct omap_pmic_map omap_tps_map[] = {
{
.name = "mpu",
- .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP4460ES1_0),
.pmic_data = &omap4_mpu_pmic,
.special_action = omap4_twl_tps62361_enable,
},
diff --git a/arch/arm/mach-omap2/omap_twl4030.c b/arch/arm/mach-omap2/omap_twl4030.c
index 1ded32863fd..d59fe1cbff5 100644
--- a/arch/arm/mach-omap2/omap_twl4030.c
+++ b/arch/arm/mach-omap2/omap_twl4030.c
@@ -343,45 +343,37 @@ static int __init twl_set_sr(struct voltagedomain *voltdm)
static __initdata struct omap_pmic_map omap_twl_map[] = {
{
.name = "mpu",
- .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP3430),
.pmic_data = &omap3_mpu_pmic,
.special_action = twl_set_sr,
},
{
.name = "core",
- .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP3430),
.pmic_data = &omap3_core_pmic,
},
{
.name = "mpu",
- .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP4430),
.pmic_data = &omap4_mpu_pmic,
},
{
.name = "core",
- .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP4430),
.pmic_data = &omap443x_core_pmic,
},
{
.name = "iva",
- .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP4430),
.pmic_data = &omap4_iva_pmic,
},
#ifdef CONFIG_OMAP4460_SEVM_PALMAS
{
.name = "mpu",
- .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP4460ES1_0),
.pmic_data = &omap446x_mpu_pmic,
},
#endif
{
.name = "core",
- .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP4460ES1_0),
.pmic_data = &omap446x_core_pmic,
},
#ifdef CONFIG_OMAP4460_SEVM_PALMAS
{ .name = "iva",
- .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP4460ES1_0),
.pmic_data = &omap446x_iva_pmic,
},