diff options
author | Chander Kashyap <chander.kashyap@linaro.org> | 2012-03-14 17:34:02 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-05-15 08:31:28 +0200 |
commit | 90005092fc91fa1ae41558db5134da41dc706745 (patch) | |
tree | ab805566360b110c18fc57b125c13c9f8f8f3070 /board/samsung/smdk5250 | |
parent | 2d594fd55d5d85f68b80cb7cc231157b9df231c7 (diff) | |
download | u-boot-90005092fc91fa1ae41558db5134da41dc706745.tar.gz u-boot-90005092fc91fa1ae41558db5134da41dc706745.tar.bz2 u-boot-90005092fc91fa1ae41558db5134da41dc706745.zip |
EXYNOS: Rename exynos5_tzpc structure to exynos_tzpc
TZPC IP is common across Exynos based SoC'c. Renaming exynos5_tzpc
in arch/arm/include/asm/arch-exynos/tzpc.h to exynos_tzpc will allow generic
usase of tzpc.
Also modify board/samsung/smdk5250/tzpc_init.c to use exynos_tzpc.
Signed-off-by: Chander Kashyap <chander.kashyap@linaro.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'board/samsung/smdk5250')
-rw-r--r-- | board/samsung/smdk5250/tzpc_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/samsung/smdk5250/tzpc_init.c b/board/samsung/smdk5250/tzpc_init.c index c2ccef3381..f39bd55e6c 100644 --- a/board/samsung/smdk5250/tzpc_init.c +++ b/board/samsung/smdk5250/tzpc_init.c @@ -28,7 +28,7 @@ /* Setting TZPC[TrustZone Protection Controller] */ void tzpc_init(void) { - struct exynos5_tzpc *tzpc; + struct exynos_tzpc *tzpc; unsigned int addr; for (addr = TZPC0_BASE; addr <= TZPC9_BASE; addr += TZPC_BASE_OFFSET) { |