mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
ARM: tegra: paz00: fix wrong SD1 power gpio
The power gpio for the external memory card was specified wrongly. Replace it with the correct value (tested with warmboot with fastboot). Signed-off-by: Marc Dietrich <marvin24@gmx.de> Acked-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Olof Johansson <olof@lixom.net>
This commit is contained in:
parent
218d06d794
commit
5f21f1240c
2 changed files with 2 additions and 2 deletions
|
@ -60,7 +60,7 @@
|
||||||
sdhci@c8000000 {
|
sdhci@c8000000 {
|
||||||
cd-gpios = <&gpio 173 0>; /* gpio PV5 */
|
cd-gpios = <&gpio 173 0>; /* gpio PV5 */
|
||||||
wp-gpios = <&gpio 57 0>; /* gpio PH1 */
|
wp-gpios = <&gpio 57 0>; /* gpio PH1 */
|
||||||
power-gpios = <&gpio 155 0>; /* gpio PT3 */
|
power-gpios = <&gpio 169 0>; /* gpio PV1 */
|
||||||
};
|
};
|
||||||
|
|
||||||
sdhci@c8000200 {
|
sdhci@c8000200 {
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
/* SDCARD */
|
/* SDCARD */
|
||||||
#define TEGRA_GPIO_SD1_CD TEGRA_GPIO_PV5
|
#define TEGRA_GPIO_SD1_CD TEGRA_GPIO_PV5
|
||||||
#define TEGRA_GPIO_SD1_WP TEGRA_GPIO_PH1
|
#define TEGRA_GPIO_SD1_WP TEGRA_GPIO_PH1
|
||||||
#define TEGRA_GPIO_SD1_POWER TEGRA_GPIO_PT3
|
#define TEGRA_GPIO_SD1_POWER TEGRA_GPIO_PV1
|
||||||
|
|
||||||
/* ULPI */
|
/* ULPI */
|
||||||
#define TEGRA_ULPI_RST TEGRA_GPIO_PV0
|
#define TEGRA_ULPI_RST TEGRA_GPIO_PV0
|
||||||
|
|
Loading…
Reference in a new issue