diff options
author | Visa Hankala <visa@cvs.openbsd.org> | 2021-05-28 16:33:37 +0000 |
---|---|---|
committer | Visa Hankala <visa@cvs.openbsd.org> | 2021-05-28 16:33:37 +0000 |
commit | 549baba0a53aa5934773405ac049259c6148887a (patch) | |
tree | 252948a2300cfd07a20d7bfdd129d3515122ea39 | |
parent | 3a46049e02ff2f646441220757b086712cc89f7b (diff) |
Remove CPU and node id fields that were used with SGI Origin.
-rw-r--r-- | sys/arch/mips64/include/cpu.h | 7 | ||||
-rw-r--r-- | sys/arch/mips64/mips64/cpu.c | 7 |
2 files changed, 2 insertions, 12 deletions
diff --git a/sys/arch/mips64/include/cpu.h b/sys/arch/mips64/include/cpu.h index d439074e73d..dd59c88161a 100644 --- a/sys/arch/mips64/include/cpu.h +++ b/sys/arch/mips64/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.132 2021/05/05 15:29:19 visa Exp $ */ +/* $OpenBSD: cpu.h,v 1.133 2021/05/28 16:33:36 visa Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -183,11 +183,6 @@ struct cpu_info { u_int32_t ci_pendingticks; -#ifdef TGT_ORIGIN - u_int16_t ci_nasid; - u_int16_t ci_slice; -#endif - struct pmap *ci_curpmap; uint ci_intrdepth; /* interrupt depth */ #ifdef MULTIPROCESSOR diff --git a/sys/arch/mips64/mips64/cpu.c b/sys/arch/mips64/mips64/cpu.c index 0ac501e49ad..2d1998c1165 100644 --- a/sys/arch/mips64/mips64/cpu.c +++ b/sys/arch/mips64/mips64/cpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.c,v 1.78 2021/05/01 16:11:11 visa Exp $ */ +/* $OpenBSD: cpu.c,v 1.79 2021/05/28 16:33:36 visa Exp $ */ /* * Copyright (c) 1997-2004 Opsycon AB (www.opsycon.se) @@ -127,11 +127,6 @@ cpuattach(struct device *parent, struct device *dev, void *aux) } #endif -#ifdef TGT_ORIGIN - ci->ci_nasid = caa->caa_maa.maa_nasid; - ci->ci_slice = caa->caa_maa.maa_physid; -#endif - printf(": "); displayver = 1; |