summaryrefslogtreecommitdiff
path: root/video/console.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/console.c')
-rw-r--r--video/console.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/video/console.c b/video/console.c
index 6eeaf0b..d53d2d7 100644
--- a/video/console.c
+++ b/video/console.c
@@ -1,5 +1,4 @@
#include "console.h"
-#include "kernel/spinlock.h"
#include "kernel/config.h"
//#define FOOLOS_CONSOLE
@@ -111,7 +110,6 @@ void scr_nextline()
void scr_put_char(char ch,char col)
{
- // lock_spin(6);
if(ch=='\n')scr_nextline();
else if(posx<SCR_WIDTH)
@@ -124,7 +122,6 @@ void scr_put_char(char ch,char col)
if(posx>=SCR_WIDTH)scr_nextline();
#endif
- //lock_release(6);
}
/*