CVS commit: src/sys/arch/emips/include

2021-05-27 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Fri May 28 05:42:07 UTC 2021

Modified Files:
src/sys/arch/emips/include: types.h

Log Message:
G/C


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/emips/include/types.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/emips/include/types.h
diff -u src/sys/arch/emips/include/types.h:1.3 src/sys/arch/emips/include/types.h:1.4
--- src/sys/arch/emips/include/types.h:1.3	Thu Apr  1 04:35:45 2021
+++ src/sys/arch/emips/include/types.h	Fri May 28 05:42:06 2021
@@ -1,11 +1,9 @@
-/*	$NetBSD: types.h,v 1.3 2021/04/01 04:35:45 simonb Exp $	*/
+/*	$NetBSD: types.h,v 1.4 2021/05/28 05:42:06 skrll Exp $	*/
 
 #include 
 
 #define	__HAVE_DEVICE_REGISTER
 #define	__HAVE_GENERIC_SOFT_INTERRUPTS
-/* We'll use the FreeRunning counter everywhere */
-#define	__HAVE_TIMECOUNTER
 
 /* MIPS specific options */
 #define	__HAVE_BOOTINFO_H



CVS commit: src/sys/arch/emips/include

2020-06-12 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Fri Jun 12 11:21:36 UTC 2020

Modified Files:
src/sys/arch/emips/include: disklabel.h

Log Message:
Remove unused OPENBSD_RAW_PART. (copied from arc?)


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/emips/include/disklabel.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/emips/include/disklabel.h
diff -u src/sys/arch/emips/include/disklabel.h:1.5 src/sys/arch/emips/include/disklabel.h:1.6
--- src/sys/arch/emips/include/disklabel.h:1.5	Thu May 16 19:06:44 2013
+++ src/sys/arch/emips/include/disklabel.h	Fri Jun 12 11:21:36 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: disklabel.h,v 1.5 2013/05/16 19:06:44 christos Exp $	*/
+/*	$NetBSD: disklabel.h,v 1.6 2020/06/12 11:21:36 tsutsui Exp $	*/
 
 /*
  * Copyright (c) 1994 Christopher G. Demetriou
@@ -37,8 +37,7 @@
 #define	LABELSECTOR	1		/* sector containing label */
 #define	LABELOFFSET	0		/* offset of label in sector */
 #define	MAXPARTITIONS	16		/* number of partitions */
-#define	RAW_PART	2		/* raw partition: ie. XX?c (XXX) */
-#define	OPENBSD_RAW_PART 2		/* raw partition: XX?c */
+#define	RAW_PART	2		/* raw partition: ie. XX?c */
 
 /* Pull in MBR partition definitions. */
 #if HAVE_NBTOOL_CONFIG_H



CVS commit: src/sys/arch/emips/include

2011-03-18 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Fri Mar 18 16:39:58 UTC 2011

Modified Files:
src/sys/arch/emips/include: param.h

Log Message:
- include mips/mips_param.h after MACHINE is defined
- remove MACHINE_ARCH and MID_MACHINE that are defined in mips/mips_param.h
- remove redundant comment


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/emips/include/param.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/emips/include/param.h
diff -u src/sys/arch/emips/include/param.h:1.2 src/sys/arch/emips/include/param.h:1.3
--- src/sys/arch/emips/include/param.h:1.2	Tue Feb  8 20:20:11 2011
+++ src/sys/arch/emips/include/param.h	Fri Mar 18 16:39:58 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: param.h,v 1.2 2011/02/08 20:20:11 rmind Exp $	*/
+/*	$NetBSD: param.h,v 1.3 2011/03/18 16:39:58 tsutsui Exp $	*/
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -42,20 +42,13 @@
 #define _EMIPS_PARAM_H_
 
 /*
- * Machine-dependent constants (VM, etc) common across MIPS cpus
- */
-
-#include mips/mips_param.h
-
-/*
  * Machine dependent constants for mips-based DECstations.
  */
 
-#define	_MACHINE_ARCH	mipseb
-#define	MACHINE_ARCH	mipseb
 #define	_MACHINE	emips
 #define	MACHINE		emips
-#define	MID_MACHINE	MID_MIPS
+
+#include mips/mips_param.h
 
 #define	DEV_BSIZE	512
 #define	DEV_BSHIFT	9		/* log2(DEV_BSIZE) */