Move definition of initTimer to be arm specific

initTimer does not exist on x86
This commit is contained in:
Anna Lyons 2017-11-15 16:39:40 +11:00
parent 1a408880f1
commit 2f7d3bb9b0
3 changed files with 3 additions and 2 deletions

View file

@ -53,4 +53,6 @@ initGenericTimer(void)
resetGenericTimer();
}
void initTimer(void);
#endif /* __ARCH_MACHINE_TIMER_H_ */

View file

@ -11,6 +11,5 @@
#define __TIMER_H
void resetTimer(void);
void initTimer(void);
#endif

View file

@ -23,7 +23,7 @@
#include <linker.h>
#include <plat/machine/hardware.h>
#include <machine.h>
#include <machine/timer.h>
#include <arch/machine/timer.h>
#include <arch/machine/fpu.h>
#include <arch/machine/tlb.h>