diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-03-28 10:46:32 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-03-30 11:24:44 -0400 |
commit | 69885079986c94f3a8e93fb29243976fe89af834 (patch) | |
tree | 66abb82fc5afc0e77a88b385424ba1ca4a573b9d /src/generic/timer_irq.h | |
parent | 65be6d514650f579621132ec8fd27da3541a3a37 (diff) | |
download | kutter-69885079986c94f3a8e93fb29243976fe89af834.tar.gz kutter-69885079986c94f3a8e93fb29243976fe89af834.tar.xz kutter-69885079986c94f3a8e93fb29243976fe89af834.zip |
timer_irq: Rename generic/timer.c to generic/timer_irq.c
Rename the file to make it clear that the code is helper functions for
boards with irq based timers.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/generic/timer_irq.h')
-rw-r--r-- | src/generic/timer_irq.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/generic/timer_irq.h b/src/generic/timer_irq.h new file mode 100644 index 00000000..0421c98c --- /dev/null +++ b/src/generic/timer_irq.h @@ -0,0 +1,6 @@ +#ifndef __GENERIC_TIMER_IRQ_H +#define __GENERIC_TIMER_IRQ_H + +void timer_dispatch_many(void); + +#endif // timer_irq.h |