From 323fb9d3e09903d6fa43ef7e1f0cc8934414c8d4 Mon Sep 17 00:00:00 2001 From: Miguel Date: Wed, 22 Aug 2018 15:19:01 +0200 Subject: removed module name definitions --- driver/keyboard.c | 2 +- driver/mouse.c | 2 +- driver/pci.c | 2 +- driver/serial.c | 2 +- driver/timer.c | 2 +- driver/vesa.c | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) (limited to 'driver') diff --git a/driver/keyboard.c b/driver/keyboard.c index 9377515..423be69 100644 --- a/driver/keyboard.c +++ b/driver/keyboard.c @@ -1,7 +1,7 @@ /// idiots keyboard driver //// // http://www.computer-engineering.org/ps2keyboard/scancodes1.html -#define FOOLOS_MODULE_NAME "keyboard" + #include "asm/x86.h" #include diff --git a/driver/mouse.c b/driver/mouse.c index e37b017..f70393c 100644 --- a/driver/mouse.c +++ b/driver/mouse.c @@ -1,4 +1,4 @@ -#define FOOLOS_MODULE_NAME "mouse" + //http://forum.osdev.org/viewtopic.php?t=10247 //based on Mouse.inc by SANiK diff --git a/driver/pci.c b/driver/pci.c index 7ad5daa..48aaff9 100644 --- a/driver/pci.c +++ b/driver/pci.c @@ -1,4 +1,4 @@ -#define FOOLOS_MODULE_NAME "pci" + #include "kernel/kernel.h" #include "asm/x86.h" diff --git a/driver/serial.c b/driver/serial.c index 6fb206f..db6599b 100644 --- a/driver/serial.c +++ b/driver/serial.c @@ -1,4 +1,4 @@ -#define FOOLOS_MODULE_NAME "serial" + #include "driver/serial.h" #include "asm/x86.h" // provides x86_inb() and x86_outb() diff --git a/driver/timer.c b/driver/timer.c index 2d4c7ff..1d04353 100644 --- a/driver/timer.c +++ b/driver/timer.c @@ -1,4 +1,4 @@ -#define FOOLOS_MODULE_NAME "timer" + #include "timer.h" #include "asm/x86.h" diff --git a/driver/vesa.c b/driver/vesa.c index d57174f..06c9f6f 100644 --- a/driver/vesa.c +++ b/driver/vesa.c @@ -5,7 +5,7 @@ #include "vesa.h" #include "lib/printf/printf.h" -#define FOOLOS_MODULE_NAME "vesa" + //#define FOOLSOS_SHOW_VESAMODES -- cgit v1.2.3