Skip to content
Snippets Groups Projects
Commit 384bcae0 authored by Nishanth Menon's avatar Nishanth Menon Committed by Tom Rini
Browse files

palmas: rename twl6035_mmc1_poweron_ldo with an palmas generic function


Since TPS659038/TWL6035/TWL6037 all belong to palmas family of TI PMICs,
rename twl6035_mmc1_poweron_ldo by a more generic palmas_mmc1_poweron_ldo
function.

Signed-off-by: default avatarNishanth Menon <nm@ti.com>
parent 12733881
No related branches found
No related tags found
No related merge requests found
...@@ -117,7 +117,7 @@ static void omap5_pbias_config(struct mmc *mmc) ...@@ -117,7 +117,7 @@ static void omap5_pbias_config(struct mmc *mmc)
value |= SDCARD_BIAS_HIZ_MODE; value |= SDCARD_BIAS_HIZ_MODE;
writel(value, (*ctrl)->control_pbias); writel(value, (*ctrl)->control_pbias);
twl6035_mmc1_poweron_ldo(); palmas_mmc1_poweron_ldo();
value = readl((*ctrl)->control_pbias); value = readl((*ctrl)->control_pbias);
value &= ~SDCARD_BIAS_HIZ_MODE; value &= ~SDCARD_BIAS_HIZ_MODE;
......
...@@ -50,7 +50,7 @@ void palmas_init_settings(void) ...@@ -50,7 +50,7 @@ void palmas_init_settings(void)
return; return;
} }
int twl6035_mmc1_poweron_ldo(void) int palmas_mmc1_poweron_ldo(void)
{ {
u8 val = 0; u8 val = 0;
......
...@@ -39,4 +39,4 @@ ...@@ -39,4 +39,4 @@
int twl6035_i2c_write_u8(u8 chip_no, u8 val, u8 reg); int twl6035_i2c_write_u8(u8 chip_no, u8 val, u8 reg);
int twl6035_i2c_read_u8(u8 chip_no, u8 *val, u8 reg); int twl6035_i2c_read_u8(u8 chip_no, u8 *val, u8 reg);
void palmas_init_settings(void); void palmas_init_settings(void);
int twl6035_mmc1_poweron_ldo(void); int palmas_mmc1_poweron_ldo(void);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment