Module Name:    src
Committed By:   isaki
Date:           Tue Jan 14 04:00:41 UTC 2020

Modified Files:
        src/sys/arch/x68k/stand/boot_ufs: boot.S boot_ufs.h

Log Message:
Clean up.
- B_KEYINP is no longer called from C.
- B_COLOR is no longer used.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/x68k/stand/boot_ufs/boot.S
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/x68k/stand/boot_ufs/boot_ufs.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/x68k/stand/boot_ufs/boot.S
diff -u src/sys/arch/x68k/stand/boot_ufs/boot.S:1.11 src/sys/arch/x68k/stand/boot_ufs/boot.S:1.12
--- src/sys/arch/x68k/stand/boot_ufs/boot.S:1.11	Mon Jan 13 03:34:05 2020
+++ src/sys/arch/x68k/stand/boot_ufs/boot.S	Tue Jan 14 04:00:41 2020
@@ -2,7 +2,7 @@
 | author: chapuni(webmas...@chapuni.com)
 |         ITOH Yasufumi
 |
-| $NetBSD: boot.S,v 1.11 2020/01/13 03:34:05 isaki Exp $
+| $NetBSD: boot.S,v 1.12 2020/01/14 04:00:41 isaki Exp $
 
 #include <machine/asm.h>
 #include "iocscall.h"
@@ -451,10 +451,6 @@ raw_read_end:
 read_half:	BOOT_ERROR("read half of block")
 
 
-ENTRY_NOPROFILE(B_KEYINP)
-		IOCS(__B_KEYINP)
-		rts
-
 ENTRY_NOPROFILE(B_PUTC)
 		movel	%sp@(4),%d1
 		IOCS(__B_PUTC)

Index: src/sys/arch/x68k/stand/boot_ufs/boot_ufs.h
diff -u src/sys/arch/x68k/stand/boot_ufs/boot_ufs.h:1.5 src/sys/arch/x68k/stand/boot_ufs/boot_ufs.h:1.6
--- src/sys/arch/x68k/stand/boot_ufs/boot_ufs.h:1.5	Sat Mar 14 14:46:07 2009
+++ src/sys/arch/x68k/stand/boot_ufs/boot_ufs.h	Tue Jan 14 04:00:41 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: boot_ufs.h,v 1.5 2009/03/14 14:46:07 dsl Exp $	*/
+/*	$NetBSD: boot_ufs.h,v 1.6 2020/01/14 04:00:41 isaki Exp $	*/
 
 /***************************************************************
  *
@@ -14,10 +14,8 @@ int badbaddr(volatile void *adr);
 #ifdef SCSI_ADHOC_BOOTPART
 void RAW_READ0(void *buf, u_int32_t blkpos, size_t bytelen);
 #endif
-unsigned B_KEYINP(void);
 void B_PUTC(unsigned int c);
 void B_PRINT(const char *p);
-unsigned B_COLOR(unsigned int w);
 
 extern unsigned ID;		/* target SCSI ID */
 extern unsigned BOOT_INFO;	/* result of IOCS(__BOOTINF) */

Reply via email to