[U-Boot] [PATCH] arm: exynos: fix the align for exynos4_power structure

res3 should be 4 bytes
Signed-off-by: Minkyu Kang mk7.kang@samsung.com Cc: Dominik Klein dominik.klein@gmx.com --- arch/arm/include/asm/arch-exynos/power.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/include/asm/arch-exynos/power.h b/arch/arm/include/asm/arch-exynos/power.h index 8db18c5..2bfee18 100644 --- a/arch/arm/include/asm/arch-exynos/power.h +++ b/arch/arm/include/asm/arch-exynos/power.h @@ -16,7 +16,7 @@ struct exynos4_power { unsigned int gnss_rtc_out_ctrl; unsigned char res2[0x1ec]; unsigned int system_power_down_ctrl; - unsigned char res3[0x1]; + unsigned int res3; unsigned int system_power_down_option; unsigned char res4[0x1f4]; unsigned int swreset;

On 02/12/13 15:09, Minkyu Kang wrote:
res3 should be 4 bytes
Signed-off-by: Minkyu Kang mk7.kang@samsung.com Cc: Dominik Klein dominik.klein@gmx.com
arch/arm/include/asm/arch-exynos/power.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
applied to u-boot-samsung.
Thanks, Minkyu Kang.
participants (1)
-
Minkyu Kang