summaryrefslogtreecommitdiff
path: root/driver
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-08-22 15:19:01 +0200
committerMiguel <m.i@gmx.at>2018-08-22 15:19:01 +0200
commit323fb9d3e09903d6fa43ef7e1f0cc8934414c8d4 (patch)
treeeb05efb1c4530db9b4942715bdef15f0923446b7 /driver
parentd57a38d7fa9501a5ec17f75a1efaef9d62df5bef (diff)
removed module name definitions
Diffstat (limited to 'driver')
-rw-r--r--driver/keyboard.c2
-rw-r--r--driver/mouse.c2
-rw-r--r--driver/pci.c2
-rw-r--r--driver/serial.c2
-rw-r--r--driver/timer.c2
-rw-r--r--driver/vesa.c2
6 files changed, 6 insertions, 6 deletions
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 <stdbool.h>
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