2 * Copyright 2005-2009 Haiku, Inc.
3 * Distributed under the terms of the MIT License.
5 * PS/2 hid device driver
7 * Authors (in chronological order):
8 * Marcus Overhagen (marcus@overhagen.de)
12 #include <KernelExport.h>
17 #define TRACE(x) dprintf x
20 int32 api_version
= B_CUR_DRIVER_API_VERSION
;
22 ps2_module_info
*gPs2
= NULL
;
28 TRACE(("ps2_hid: init_hardware\n"));
36 TRACE(("ps2_hid: publish_devices\n"));
42 find_device(const char *name
)
44 TRACE(("ps2_hid: find_device\n"));
52 TRACE(("ps2_hid: init_driver\n"));
53 return get_module(B_PS2_MODULE_NAME
, (module_info
**)&gPs2
);
60 TRACE(("ps2_hid: uninit_driver\n"));
61 put_module(B_PS2_MODULE_NAME
);