diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-01-20 21:38:17 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-01-20 21:38:17 +0000 |
commit | a829bfe882df00810912189384145fbdda10529d (patch) | |
tree | d9b6c930ff1bf2cabd98820e7da8938e5c3facbf | |
parent | 5833f7c0e69df069aec918ba9f34b4a0fe0019f5 (diff) |
add a header file for i8259.h (trivial)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3881 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/include/pc80/i8259.h | 1 | ||||
-rw-r--r-- | src/pc80/i8259.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/include/pc80/i8259.h b/src/include/pc80/i8259.h new file mode 100644 index 0000000000..10a3fc8071 --- /dev/null +++ b/src/include/pc80/i8259.h @@ -0,0 +1 @@ +void setup_i8259(void); diff --git a/src/pc80/i8259.c b/src/pc80/i8259.c index 8ebcd27dd1..a397e0e0d8 100644 --- a/src/pc80/i8259.c +++ b/src/pc80/i8259.c @@ -1,4 +1,5 @@ #include <arch/io.h> +#include <pc80/i8259.h> /* code taken from: ! ! setup.S Copyright (C) 1991, 1992 Linus Torvalds |