Unbroke the build (ps2.h was suddenly missing.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16121 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2006-01-28 18:48:50 +00:00
parent afd6dfc8b4
commit 036b999b54
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@ SubDir HAIKU_TOP src system kernel arch x86 ;
SubDirHdrs [ FDirName $(TARGET_COMMON_DEBUG_OBJECT_DIR) system kernel ] ; SubDirHdrs [ FDirName $(TARGET_COMMON_DEBUG_OBJECT_DIR) system kernel ] ;
# for syscall_numbers.h # for syscall_numbers.h
SubDirHdrs $(HAIKU_TOP) src add-ons kernel drivers input ps2_hid ; SubDirHdrs $(HAIKU_TOP) src add-ons kernel bus_managers ps2 ;
SubDirHdrs $(SUBDIR) $(DOTDOT) generic ; SubDirHdrs $(SUBDIR) $(DOTDOT) generic ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) $(DOTDOT) generic ] ; SEARCH_SOURCE += [ FDirName $(SUBDIR) $(DOTDOT) generic ] ;

View File

@ -9,7 +9,7 @@
*/ */
#include "ps2.h" #include "ps2_defs.h"
#include <KernelExport.h> #include <KernelExport.h>
#include <driver_settings.h> #include <driver_settings.h>
@ -136,7 +136,7 @@ arch_debug_blue_screen_getchar(void)
spin(200); spin(200);
key = in8(PS2_PORT_DATA); key = in8(PS2_PORT_DATA);
if (status & PS2_STATUS_MOUSE_DATA) { if (status & PS2_STATUS_AUX_DATA) {
// we read mouse data, ignore it // we read mouse data, ignore it
continue; continue;
} }