From: Alan Cox Date: Tue, 29 Jan 2019 23:01:05 +0000 (+0000) Subject: tiny68k: clean up minor things X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=85c826acc4ad8e5ce142b70c7a4e41639d4ad6a9;p=FUZIX.git tiny68k: clean up minor things --- diff --git a/Kernel/platform-tiny68k/device.h b/Kernel/platform-tiny68k/device.h deleted file mode 100644 index 6f4c1e26..00000000 --- a/Kernel/platform-tiny68k/device.h +++ /dev/null @@ -1,6 +0,0 @@ -#ifndef __DEVICE_DOT_H__ -#define __DEVICE_DOT_H__ - -extern void mod_control(uint8_t set, uint8_t clr); - -#endif /* __DEVICE_DOT_H__ */ diff --git a/Kernel/platform-tiny68k/devices.c b/Kernel/platform-tiny68k/devices.c index 42e71872..4c62562d 100644 --- a/Kernel/platform-tiny68k/devices.c +++ b/Kernel/platform-tiny68k/devices.c @@ -36,7 +36,5 @@ bool validdev(uint16_t dev) void device_init(void) { - int i; - devide_init(); } diff --git a/Kernel/platform-tiny68k/devtty.c b/Kernel/platform-tiny68k/devtty.c index 9b221a8b..26b48795 100644 --- a/Kernel/platform-tiny68k/devtty.c +++ b/Kernel/platform-tiny68k/devtty.c @@ -3,7 +3,6 @@ #include #include #include -#include #include static unsigned char tbuf1[TTYSIZ];