From b2a7c36cced0f15fdf1025d24902a5ca06dff711 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Tue, 13 Sep 2016 00:14:20 +0100 Subject: [PATCH] 68000: swab is now not needed as we use the inlines --- Kernel/platform-v68/main.c | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/Kernel/platform-v68/main.c b/Kernel/platform-v68/main.c index fa168320..1dc968ca 100644 --- a/Kernel/platform-v68/main.c +++ b/Kernel/platform-v68/main.c @@ -104,18 +104,3 @@ void memzero(void *p, usize_t len) { memset(p, 0, len); } - -/* TODO */ -void devide_read_data(void) -{ -} - -void devide_write_data(void) -{ -} - -/* FIXME: move to asm and lowlevel- */ -uint16_t swab(uint16_t a) -{ - return (a << 8) | (a >> 8); -} -- 2.34.1