summaryrefslogtreecommitdiff
path: root/driver/serial.c
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-10-04 00:53:30 +0200
committerMiguel <m.i@gmx.at>2018-10-04 00:53:30 +0200
commitce16fe524c14ccaae67fb634105da5aef08ead48 (patch)
tree03990f29389bd4c55f40b804b809c7060c24c739 /driver/serial.c
parenta455cd5af26bf8731e7c981a9421b16ab34dae6f (diff)
moving framebuffer access completely to userspace
Diffstat (limited to 'driver/serial.c')
-rw-r--r--driver/serial.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/driver/serial.c b/driver/serial.c
index 16b3b6c..4e43251 100644
--- a/driver/serial.c
+++ b/driver/serial.c
@@ -1,5 +1,3 @@
-#ifndef FOOLOS_LOG_OFF
-
#include "serial.h"
#include "asm_x86.h" // provides x86_inb() and x86_outb()
@@ -38,5 +36,3 @@ void serial_write(uint8_t a)
while (is_transmit_empty() == 0);
x86_outb(PORT,a);
}
-
-#endif