blob: e156398be3b3ab977abe38d182b0d232976a2ae0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* Placeholder for code to come(needed to complete build)
*
* Copyright (C) 2013 Alexandru Gagniuc <mr.nuke.me@gmail.com>
* Subject to the GNU GPL v2, or (at your option) any later version.
*/
#include <delay.h>
#include <timer.h>
void init_timer(void)
{
/* Stub */
}
void udelay(unsigned usec)
{
/* Stub */
}
|