diff mbox

[U-Boot] SMDK5250: fix compiler warning

Message ID 4F7BCDF0.1020802@samsung.com
State Accepted
Commit 8f2fabe98916fe349d0a412192dfaa0c3cba9874
Delegated to: Minkyu Kang
Headers show

Commit Message

Minkyu Kang April 4, 2012, 4:28 a.m. UTC
this patch fixed following warning.
tzpc_init.c: In function 'tzpc_init':
tzpc_init.c:35: warning: assignment from incompatible pointer type

Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Cc: Chander Kashyap <chander.kashyap@linaro.org>
---
 board/samsung/smdk5250/tzpc_init.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

Minkyu Kang April 9, 2012, 8:31 a.m. UTC | #1
On 4 April 2012 13:28, Minkyu Kang <mk7.kang@samsung.com> wrote:
> this patch fixed following warning.
> tzpc_init.c: In function 'tzpc_init':
> tzpc_init.c:35: warning: assignment from incompatible pointer type
>
> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
> Cc: Chander Kashyap <chander.kashyap@linaro.org>
> ---
>  board/samsung/smdk5250/tzpc_init.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>

applied to u-boot-samsung.
diff mbox

Patch

diff --git a/board/samsung/smdk5250/tzpc_init.c b/board/samsung/smdk5250/tzpc_init.c
index f39bd55..c833541 100644
--- a/board/samsung/smdk5250/tzpc_init.c
+++ b/board/samsung/smdk5250/tzpc_init.c
@@ -32,7 +32,7 @@  void tzpc_init(void)
 	unsigned int addr;
 
 	for (addr = TZPC0_BASE; addr <= TZPC9_BASE; addr += TZPC_BASE_OFFSET) {
-		tzpc = (struct exynos5_tzpc *)addr;
+		tzpc = (struct exynos_tzpc *)addr;
 
 		if (addr == TZPC0_BASE)
 			writel(R0SIZE, &tzpc->r0size);