organize device drivers into subdirectories
This commit is contained in:
18
kernel/device/ps2/ps2_kb.h
Normal file
18
kernel/device/ps2/ps2_kb.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef _KERNEL_DEVICE_PS2_KB_H
|
||||
#define _KERNEL_DEVICE_PS2_KB_H
|
||||
|
||||
#include <device/def_device_op.h>
|
||||
#include <libk/list.h>
|
||||
#include <libk/std.h>
|
||||
#include <proc/proc.h>
|
||||
#include <proc/reschedule.h>
|
||||
|
||||
struct device;
|
||||
|
||||
DEFINE_DEVICE_OP (ps2kb_read_key);
|
||||
|
||||
DEFINE_DEVICE_INIT (ps2kb_init);
|
||||
|
||||
DEFINE_DEVICE_FINI (ps2kb_fini);
|
||||
|
||||
#endif // _KERNEL_DEVICE_PS2_KB_H
|
||||
Reference in New Issue
Block a user