68000: swab is now not needed as we use the inlines
authorAlan Cox <alan@linux.intel.com>
Mon, 12 Sep 2016 23:14:20 +0000 (00:14 +0100)
committerAlan Cox <alan@linux.intel.com>
Mon, 12 Sep 2016 23:14:20 +0000 (00:14 +0100)
Kernel/platform-v68/main.c

index fa16832..1dc968c 100644 (file)
@@ -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);
-}