From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jaehoon Chung Date: Fri, 04 Jul 2014 14:37:41 +0900 Subject: [U-Boot] [PATCH v4 02/12] exynos: pinmux: fix the gpio names for exynos4x12 mmc In-Reply-To: <1404301814-3657-3-git-send-email-p.marczak@samsung.com> References: <1403792137-3113-1-git-send-email-p.marczak@samsung.com> <1404301814-3657-1-git-send-email-p.marczak@samsung.com> <1404301814-3657-3-git-send-email-p.marczak@samsung.com> Message-ID: <53B63DA5.2040000@samsung.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de It's reasonable, looks good to me. Acked-by: Jaehoon Chung On 07/02/2014 08:50 PM, Przemyslaw Marczak wrote: > This change fixes the bad gpio configuration for the exynos dwmmc. > > Signed-off-by: Przemyslaw Marczak > Cc: Beomho Seo > Cc: Minkyu Kang > Cc: Jaehoon Chung > --- > arch/arm/cpu/armv7/exynos/pinmux.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/arch/arm/cpu/armv7/exynos/pinmux.c b/arch/arm/cpu/armv7/exynos/pinmux.c > index 86a0c75..b929486 100644 > --- a/arch/arm/cpu/armv7/exynos/pinmux.c > +++ b/arch/arm/cpu/armv7/exynos/pinmux.c > @@ -704,8 +704,8 @@ static int exynos4x12_mmc_config(int peripheral, int flags) > ext_func = S5P_GPIO_FUNC(0x3); > break; > case PERIPH_ID_SDMMC4: > - start = EXYNOS4_GPIO_K00; > - start_ext = EXYNOS4_GPIO_K13; > + start = EXYNOS4X12_GPIO_K00; > + start_ext = EXYNOS4X12_GPIO_K13; > func = S5P_GPIO_FUNC(0x3); > ext_func = S5P_GPIO_FUNC(0x4); > break; >