| #
b81fa615 |
| 01-Sep-2014 |
Masahiro Yamada <yamada.m@jp.panasonic.com> |
arm: debug: adjust for U-Boot
Because CONFIG_MMU is never defined in U-Boot, the non-MMU code in debug.S is always used.
Unfortunately, the number of arguments of the addruart macro in Linux is dif
arm: debug: adjust for U-Boot
Because CONFIG_MMU is never defined in U-Boot, the non-MMU code in debug.S is always used.
Unfortunately, the number of arguments of the addruart macro in Linux is different between MMU and non-MMU. This causes a build error when importing some debug macros using the third argument. (For ex. arch/arm/include/debug/exynos.S) Pass the third argument to the non-MMU addruart to avoid such a problem.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Tested-by: Przemyslaw Marczak <p.marczak@samsung.com>
show more ...
|
| #
1cfe9fa0 |
| 01-Sep-2014 |
Masahiro Yamada <yamada.m@jp.panasonic.com> |
arm: debug: import debug files from Linux 3.16
U-Boot does not have arch/arm/kernel, include/uapi directories, This commit copies files as follows:
Location in Linux -> Location in
arm: debug: import debug files from Linux 3.16
U-Boot does not have arch/arm/kernel, include/uapi directories, This commit copies files as follows:
Location in Linux -> Location in U-Boot
arch/arm/kernel/debug.S -> arch/arm/lib/debug.S arch/arm/include/debug/8250.S -> arch/arm/include/debug/8250.S include/uapi/linux/serial_reg.h -> include/linux/serial_reg.h
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
show more ...
|