summaryrefslogtreecommitdiff
path: root/board.h
diff options
context:
space:
mode:
authorSegher Boessenkool <segher@kernel.crashing.org>2009-02-08 19:26:46 +0100
committerSegher Boessenkool <segher@kernel.crashing.org>2009-02-08 19:26:46 +0100
commite4a84ef292da4f7529575cda5219888936bf9ad5 (patch)
tree81b5d636256de1a70997303128e7e8b89420e24e /board.h
parent42ca28d97bd8d442dd60ecb96eb4c85e64224fd5 (diff)
Add board->init(); also add missing board-*.c files (oops)
Diffstat (limited to 'board.h')
-rw-r--r--board.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/board.h b/board.h
index 3e5e622..ac0d5d0 100644
--- a/board.h
+++ b/board.h
@@ -8,7 +8,7 @@
#include "types.h"
struct board {
- //
+ void (*init)(void);
};
extern struct board board_VII, board_WAL;