mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-16 23:07:00 +00:00
Merge branch 'master' of git://git.denx.de/u-boot-arm
* 'master' of git://git.denx.de/u-boot-arm: arm: add __aeabi_unwind_cpp_pr1() function to avoid linker complaints post: fix compile issue for post tests on kirkwood
This commit is contained in:
commit
4f1a2cd163
2 changed files with 5 additions and 1 deletions
|
@ -23,3 +23,7 @@ int raise (int signum)
|
|||
void __aeabi_unwind_cpp_pr0(void)
|
||||
{
|
||||
};
|
||||
|
||||
void __aeabi_unwind_cpp_pr1(void)
|
||||
{
|
||||
};
|
||||
|
|
|
@ -495,7 +495,7 @@ void post_reloc(void)
|
|||
*/
|
||||
unsigned long post_time_ms(unsigned long base)
|
||||
{
|
||||
#if defined(CONFIG_PPC) || defined(CONFIG_ARM)
|
||||
#if defined(CONFIG_PPC) || defined(CONFIG_ARM) && !defined(CONFIG_KIRKWOOD)
|
||||
return (unsigned long)lldiv(get_ticks(), get_tbclk() / CONFIG_SYS_HZ)
|
||||
- base;
|
||||
#else
|
||||
|
|
Loading…
Add table
Reference in a new issue