* Fixed relative include.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31659 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2009-07-20 20:33:35 +00:00
parent 7f96148cac
commit 8ef9253a59
2 changed files with 9 additions and 4 deletions

View File

@ -1,7 +1,8 @@
SubDir HAIKU_TOP src add-ons kernel drivers input ps2_hid ;
UsePrivateHeaders input ;
UsePrivateHeaders kernel ;
UsePrivateHeaders input kernel ;
UseHeaders [ FDirName $(HAIKU_TOP) src add-ons kernel bus_managers ps2 ] ;
KernelAddon ps2_hid :
ps2_hid.c

View File

@ -1,5 +1,5 @@
/*
* Copyright 2005 Haiku, Inc.
* Copyright 2005-2009 Haiku, Inc.
* Distributed under the terms of the MIT License.
*
* PS/2 hid device driver
@ -8,16 +8,20 @@
* Marcus Overhagen (marcus@overhagen.de)
*/
#include <KernelExport.h>
#include <Drivers.h>
#include "../../../bus_managers/ps2/PS2.h"
#include "PS2.h"
#define TRACE(x) dprintf x
int32 api_version = B_CUR_DRIVER_API_VERSION;
ps2_module_info *gPs2 = NULL;
status_t
init_hardware(void)
{