Some header cleanups.

Removed unused keyboard.h header.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3135 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-05-03 13:26:32 +00:00
parent c4bf92f686
commit f78d32a251
5 changed files with 6 additions and 14 deletions

View File

@ -5,7 +5,7 @@
#ifndef _KERNEL_ARCH_x86_STAGE2_H
#define _KERNEL_ARCH_x86_STAGE2_H
#include <stage2_struct.h>
#include <boot/stage2_struct.h>
#define MAX_BOOT_PTABLES 4

View File

@ -5,9 +5,9 @@
#ifndef _CONSOLE_DEV_H
#define _CONSOLE_DEV_H
#include <stage2.h>
struct kernel_args;
int console_dev_init(kernel_args *ka);
int console_dev_init(struct kernel_args *ka);
enum {
CONSOLE_OP_WRITEXY = 2376

View File

@ -1,9 +0,0 @@
#ifndef _KEYBOARD_H
#define _KEYBOARD_H
#include <stage2.h>
int keyboard_dev_init(kernel_args *ka);
#endif

View File

@ -5,10 +5,11 @@
#ifndef _KERNEL_ARCH_x86_SMP_PRIV_H
#define _KERNEL_ARCH_x86_SMP_PRIV_H
#include <ktypes.h>
int i386_smp_interrupt(int vector);
void arch_smp_ack_interrupt(void);
int arch_smp_set_apic_timer(bigtime_t relative_timeout);
int arch_smp_clear_apic_timer(void);
int smp_intercpu_int_handler(void);
#endif /* _KERNEL_ARCH_x86_SMP_PRIV_H */

View File

@ -5,7 +5,7 @@
#ifndef _STAGE2_PRIV_H
#define _STAGE2_PRIV_H
#include <stage2.h>
#include <boot/stage2.h>
#include <ktypes.h>
extern void _start(uint32 mem, int in_vesa, uint32 vesa_ptr);