summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/board-cardhu-sensors.c
diff options
context:
space:
mode:
authorPritesh Raithatha <praithatha@nvidia.com>2011-05-11 22:31:14 +0530
committerDan Willemsen <dwillemsen@nvidia.com>2011-11-30 21:45:52 -0800
commit9244ea90eea98025bdf3a11bd0754e28efa6991d (patch)
treeb45b9105d7c01adf5ed3742e465da4250fc1e7cc /arch/arm/mach-tegra/board-cardhu-sensors.c
parent5637750b732cb5227f544c19d4ff0efd2c89d504 (diff)
ARM: tegra: cardhu: remove avdd_dsi_csi regulator code
remove avdd_dsi_csi regulator code as it is already handled by tegra_camera.c Bug 826043 Original-Change-Id: I0e97268c4381a27d9d2b499d7f332cc21314a045 Reviewed-on: http://git-master/r/31191 Reviewed-by: Varun Colbert <vcolbert@nvidia.com> Tested-by: Varun Colbert <vcolbert@nvidia.com> Rebase-Id: R380b03fdd0c8e2a9f247c1222892634ae826ede8
Diffstat (limited to 'arch/arm/mach-tegra/board-cardhu-sensors.c')
-rw-r--r--arch/arm/mach-tegra/board-cardhu-sensors.c52
1 files changed, 0 insertions, 52 deletions
diff --git a/arch/arm/mach-tegra/board-cardhu-sensors.c b/arch/arm/mach-tegra/board-cardhu-sensors.c
index e9d2c6b09157..852fd306c88f 100644
--- a/arch/arm/mach-tegra/board-cardhu-sensors.c
+++ b/arch/arm/mach-tegra/board-cardhu-sensors.c
@@ -42,7 +42,6 @@
static struct regulator *cardhu_1v8_cam1 = NULL;
static struct regulator *cardhu_1v8_cam2 = NULL;
static struct regulator *cardhu_1v8_cam3 = NULL;
-static struct regulator *cardhu_avdd_dsi_csi = NULL;
static struct regulator *cardhu_vdd_2v8_cam1 = NULL;
static struct regulator *cardhu_vdd_2v8_cam2 = NULL;
static struct regulator *cardhu_vdd_cam3 = NULL;
@@ -147,17 +146,6 @@ static int cardhu_left_ov5650_power_on(void)
}
regulator_enable(cardhu_1v8_cam1);
- /* Enable AVDD_CSI_DSI */
- if (cardhu_avdd_dsi_csi == NULL) {
- cardhu_avdd_dsi_csi = regulator_get(NULL, "avdd_dsi_csi");
- if (WARN_ON(IS_ERR(cardhu_avdd_dsi_csi))) {
- pr_err("%s: couldn't get regulator avdd_dsi_csi: %ld\n",
- __func__, PTR_ERR(cardhu_avdd_dsi_csi));
- goto reg_alloc_fail;
- }
- }
- regulator_enable(cardhu_avdd_dsi_csi);
-
mdelay(5);
if ((board_info.board_id == BOARD_E1198) ||
(board_info.board_id == BOARD_E1291)) {
@@ -174,10 +162,6 @@ reg_alloc_fail:
regulator_put(cardhu_1v8_cam1);
cardhu_1v8_cam1 = NULL;
}
- if (cardhu_avdd_dsi_csi) {
- regulator_put(cardhu_avdd_dsi_csi);
- cardhu_avdd_dsi_csi = NULL;
- }
if (cardhu_vdd_2v8_cam1) {
regulator_put(cardhu_vdd_2v8_cam1);
cardhu_vdd_2v8_cam1 = NULL;
@@ -199,8 +183,6 @@ static int cardhu_left_ov5650_power_off(void)
}
if (cardhu_1v8_cam1)
regulator_disable(cardhu_1v8_cam1);
- if (cardhu_avdd_dsi_csi)
- regulator_disable(cardhu_avdd_dsi_csi);
if (cardhu_vdd_2v8_cam1)
regulator_disable(cardhu_vdd_2v8_cam1);
@@ -246,17 +228,6 @@ static int cardhu_right_ov5650_power_on(void)
}
regulator_enable(cardhu_1v8_cam2);
- /* Enable AVDD_CSI_DSI */
- if (cardhu_avdd_dsi_csi == NULL) {
- cardhu_avdd_dsi_csi = regulator_get(NULL, "avdd_dsi_csi");
- if (WARN_ON(IS_ERR(cardhu_avdd_dsi_csi))) {
- pr_err("%s: couldn't get regulator avdd_dsi_csi: %ld\n",
- __func__, PTR_ERR(cardhu_avdd_dsi_csi));
- goto reg_alloc_fail;
- }
- }
- regulator_enable(cardhu_avdd_dsi_csi);
-
mdelay(5);
return 0;
@@ -265,10 +236,6 @@ reg_alloc_fail:
regulator_put(cardhu_1v8_cam2);
cardhu_1v8_cam2 = NULL;
}
- if (cardhu_avdd_dsi_csi) {
- regulator_put(cardhu_avdd_dsi_csi);
- cardhu_avdd_dsi_csi = NULL;
- }
if (cardhu_vdd_2v8_cam2) {
regulator_put(cardhu_vdd_2v8_cam2);
cardhu_vdd_2v8_cam2 = NULL;
@@ -290,8 +257,6 @@ static int cardhu_right_ov5650_power_off(void)
if (cardhu_1v8_cam2)
regulator_disable(cardhu_1v8_cam2);
- if (cardhu_avdd_dsi_csi)
- regulator_disable(cardhu_avdd_dsi_csi);
if (cardhu_vdd_2v8_cam2)
regulator_disable(cardhu_vdd_2v8_cam2);
@@ -340,17 +305,6 @@ static int cardhu_ov2710_power_on(void)
}
}
regulator_enable(cardhu_1v8_cam3);
-
- /* Enable AVDD_CSI_DSI */
- if (cardhu_avdd_dsi_csi == NULL) {
- cardhu_avdd_dsi_csi = regulator_get(NULL, "avdd_dsi_csi");
- if (WARN_ON(IS_ERR(cardhu_avdd_dsi_csi))) {
- pr_err("%s: couldn't get regulator avdd_dsi_csi: %ld\n",
- __func__, PTR_ERR(cardhu_avdd_dsi_csi));
- goto reg_alloc_fail;
- }
- }
- regulator_enable(cardhu_avdd_dsi_csi);
mdelay(5);
return 0;
@@ -360,10 +314,6 @@ reg_alloc_fail:
regulator_put(cardhu_1v8_cam3);
cardhu_1v8_cam3 = NULL;
}
- if (cardhu_avdd_dsi_csi) {
- regulator_put(cardhu_avdd_dsi_csi);
- cardhu_avdd_dsi_csi = NULL;
- }
if (cardhu_vdd_cam3) {
regulator_put(cardhu_vdd_cam3);
cardhu_vdd_cam3 = NULL;
@@ -387,8 +337,6 @@ static int cardhu_ov2710_power_off(void)
if (cardhu_1v8_cam3)
regulator_disable(cardhu_1v8_cam3);
- if (cardhu_avdd_dsi_csi)
- regulator_disable(cardhu_avdd_dsi_csi);
if (cardhu_vdd_cam3)
regulator_disable(cardhu_vdd_cam3);