Re: [U-Boot] [PATCH v3 05/12] common: lcd.c: fix data abort exception when try to access bmp header

2014-01-06 Thread Anatolij Gustschin
On Fri, 03 Jan 2014 17:43:06 +0100 Przemyslaw Marczak wrote: > Changes: > - le16_to_cpu() to get_unaligned_le16() > - le32_to_cpu() to get_unaligned_le32() > when access fields in struct bmp header. > > This changes avoids data abort exception caused by unaligned data access. > > Signed-off-by:

Re: [U-Boot] [PATCH v3 05/12] common: lcd.c: fix data abort exception when try to access bmp header

2014-01-05 Thread Minkyu Kang
Cc: Anatolij Gustschin On 04/01/14 01:43, Przemyslaw Marczak wrote: > Changes: > - le16_to_cpu() to get_unaligned_le16() > - le32_to_cpu() to get_unaligned_le32() > when access fields in struct bmp header. > > This changes avoids data abort exception caused by unaligned data access. > > Signed-o

[U-Boot] [PATCH v3 05/12] common: lcd.c: fix data abort exception when try to access bmp header

2014-01-03 Thread Przemyslaw Marczak
Changes: - le16_to_cpu() to get_unaligned_le16() - le32_to_cpu() to get_unaligned_le32() when access fields in struct bmp header. This changes avoids data abort exception caused by unaligned data access. Signed-off-by: Przemyslaw Marczak --- Changes v2: - new patch Changes v3: - common/Makefil