summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/board-ardbeg-power.c
diff options
context:
space:
mode:
authorLaxman Dewangan <ldewangan@nvidia.com>2014-03-19 18:24:37 +0530
committerLaxman Dewangan <ldewangan@nvidia.com>2014-03-19 23:36:31 -0700
commit91e659569b47b15f5ba7a025ac56453b75dba2cf (patch)
treea195163c869854400a75f2cf70993f5529bfc916 /arch/arm/mach-tegra/board-ardbeg-power.c
parentb832c863114caced0a26ebb37ba0fa7bdd2025bd (diff)
ARM: tegra: rewrite power tree registration for different ardbeg fab
use switch-case instead of if-else for power tree registration based on board id. This will it is more readable and create nice platform to move power tree to DT. Change-Id: I800a312f3ad179bc9197cba0b6391e121d214539 Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-on: http://git-master/r/383865
Diffstat (limited to 'arch/arm/mach-tegra/board-ardbeg-power.c')
-rw-r--r--arch/arm/mach-tegra/board-ardbeg-power.c45
1 files changed, 24 insertions, 21 deletions
diff --git a/arch/arm/mach-tegra/board-ardbeg-power.c b/arch/arm/mach-tegra/board-ardbeg-power.c
index 26fbadb26d68..1449e9883bd1 100644
--- a/arch/arm/mach-tegra/board-ardbeg-power.c
+++ b/arch/arm/mach-tegra/board-ardbeg-power.c
@@ -1120,33 +1120,37 @@ int __init ardbeg_regulator_init(void)
tegra_get_pmu_board_info(&pmu_board_info);
- if ((pmu_board_info.board_id == BOARD_E1733) ||
- (pmu_board_info.board_id == BOARD_E1734)) {
+ switch (pmu_board_info.board_id) {
+ case BOARD_E1733:
+ case BOARD_E1734:
i2c_register_board_info(0, tca6408_expander,
ARRAY_SIZE(tca6408_expander));
ardbeg_ams_regulator_init();
regulator_has_full_constraints();
- } else if (pmu_board_info.board_id == BOARD_E1735) {
+ platform_device_register(&power_supply_extcon_device);
+ break;
+
+ case BOARD_E1735:
regulator_has_full_constraints();
ardbeg_tps65913_regulator_init();
#ifdef CONFIG_REGULATOR_TEGRA_DFLL_BYPASS
tegra_init_cpu_reg_mode_limits(
E1735_CPU_VDD_IDLE_MA, REGULATOR_MODE_IDLE);
#endif
- } else if (pmu_board_info.board_id == BOARD_E1736 ||
- pmu_board_info.board_id == BOARD_E1936 ||
- pmu_board_info.board_id == BOARD_E1769 ||
- pmu_board_info.board_id == BOARD_P1761) {
+ break;
+
+ case BOARD_E1736:
+ case BOARD_E1936:
+ case BOARD_E1769:
+ case BOARD_P1761:
tn8_regulator_init();
return 0;
- } else {
+ default:
pr_warn("PMU board id 0x%04x is not supported\n",
pmu_board_info.board_id);
+ break;
}
- if (pmu_board_info.board_id != BOARD_E1735)
- platform_device_register(&power_supply_extcon_device);
-
ardbeg_cl_dvfs_init(&pmu_board_info);
return 0;
}
@@ -1167,21 +1171,20 @@ static int __init ardbeg_fixed_regulator_init(void)
ARRAY_SIZE(fixed_reg_devs_e1824));
tegra_get_pmu_board_info(&pmu_board_info);
-
- if (pmu_board_info.board_id == BOARD_E1733)
+ switch (pmu_board_info.board_id) {
+ case BOARD_E1733:
return platform_add_devices(fixed_reg_devs_e1733,
ARRAY_SIZE(fixed_reg_devs_e1733));
- else if (pmu_board_info.board_id == BOARD_E1735)
+ case BOARD_E1735:
return platform_add_devices(fixed_reg_devs_e1735,
ARRAY_SIZE(fixed_reg_devs_e1735));
- else if (pmu_board_info.board_id == BOARD_E1736 ||
- pmu_board_info.board_id == BOARD_P1761 ||
- pmu_board_info.board_id == BOARD_E1936)
- return 0;
- else
- pr_warn("The PMU board id 0x%04x is not supported\n",
- pmu_board_info.board_id);
+ case BOARD_E1736:
+ case BOARD_P1761:
+ case BOARD_E1936:
+ return 0;
+ }
+ pr_warn("The PMU board id %04d is not supported\n", pmu_board_info.board_id);
return 0;
}