From: Alan Cox Date: Thu, 28 Feb 2019 21:32:15 +0000 (+0000) Subject: trs80m1: remove debugging code X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=5663645c9ec9857752c229419bc1c7ff60cb127e;p=FUZIX.git trs80m1: remove debugging code --- diff --git a/Kernel/platform-trs80m1/devfd.c b/Kernel/platform-trs80m1/devfd.c index c322a50d..b78b46f6 100644 --- a/Kernel/platform-trs80m1/devfd.c +++ b/Kernel/platform-trs80m1/devfd.c @@ -200,7 +200,6 @@ static int fd_transfer(uint8_t minor, bool is_read, uint8_t rawflag) /* If we don't know where the head on this drive is then force a seek */ if (*driveptr == 0xFF) { - kputs("res2"); if (err = fops->fd_restore(driveptr)) goto bad; } @@ -234,7 +233,6 @@ static int fd_transfer(uint8_t minor, bool is_read, uint8_t rawflag) /* Reading 40 track media on an 80 track drive */ if (f->config & FDC_DSTEP) fd_cmd[1] <<= 1; - kputs("op"); /* Now try the I/O */ for (tries = 0; tries < 4 ; tries++) { err = fops->fd_op(driveptr);