Move the udelay() code from various arm board directories into the src/generic/armcm_timer.c code. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
9 lines
151 B
C
9 lines
151 B
C
#ifndef __GENERIC_ARMCM_TIMER_H
|
|
#define __GENERIC_ARMCM_TIMER_H
|
|
|
|
#include <stdint.h> // uint32_t
|
|
|
|
void udelay(uint32_t usecs);
|
|
|
|
#endif // serial_irq.h
|