diff options
| author | Warner Losh <imp@FreeBSD.org> | 2017-02-28 23:42:47 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2017-02-28 23:42:47 +0000 |
| commit | fbbd9655e5107c68e4e0146ff22b73d7350475bc (patch) | |
| tree | c68b7d4e6c82fd26ce5f831625ef6e971ad98e9c /sys/mips | |
| parent | 08c22689e662f3091ba410c950367f0769c92995 (diff) | |
Notes
Diffstat (limited to 'sys/mips')
35 files changed, 75 insertions, 84 deletions
diff --git a/sys/mips/include/_align.h b/sys/mips/include/_align.h index f945164d260c..97c939f82e29 100644 --- a/sys/mips/include/_align.h +++ b/sys/mips/include/_align.h @@ -17,7 +17,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/_limits.h b/sys/mips/include/_limits.h index 87559081b202..06c164db4201 100644 --- a/sys/mips/include/_limits.h +++ b/sys/mips/include/_limits.h @@ -10,7 +10,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/asm.h b/sys/mips/include/asm.h index 8a7d640f9e12..11b9bf87029f 100644 --- a/sys/mips/include/asm.h +++ b/sys/mips/include/asm.h @@ -15,7 +15,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/cpu.h b/sys/mips/include/cpu.h index 2691cf2c88e2..d8070f6f3fa9 100644 --- a/sys/mips/include/cpu.h +++ b/sys/mips/include/cpu.h @@ -15,7 +15,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/cpuinfo.h b/sys/mips/include/cpuinfo.h index ec746140b2d0..b2e94c330aa1 100644 --- a/sys/mips/include/cpuinfo.h +++ b/sys/mips/include/cpuinfo.h @@ -1,12 +1,7 @@ -/* $NetBSD: cpu.h,v 1.70 2003/01/17 23:36:08 thorpej Exp $ */ - /*- - * Copyright (c) 1992, 1993 + * Copyright (c) 1987, 1988, 1993 * The Regents of the University of California. All rights reserved. * - * This code is derived from software contributed to Berkeley by - * Ralph Campbell and Rick Macklem. - * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -15,11 +10,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * This product includes software developed by the University of - * California, Berkeley and its contributors. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * @@ -35,50 +26,50 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * + * @(#)disklabel.h 8.2 (Berkeley) 7/10/94 * $FreeBSD$ - * @(#)cpu.h 8.4 (Berkeley) 1/4/94 */ -#ifndef _CPUINFO_H_ -#define _CPUINFO_H_ +#ifndef _SYS_DISK_PC98_H_ +#define _SYS_DISK_PC98_H_ -/* - * Exported definitions unique to NetBSD/mips cpu support. - */ +#define PC98_BBSECTOR 1 /* DOS boot block relative sector number */ +#define PC98_PARTOFF 0 +#define PC98_PARTSIZE 32 +#define PC98_NPARTS 16 +#define PC98_MAGICOFS 510 +#define PC98_MAGIC 0xAA55 -#ifdef _KERNEL -#ifndef LOCORE +#define PC98_MID_BOOTABLE 0x80 +#define PC98_MID_MASK 0x7f +#define PC98_MID_386BSD 0x14 -struct mips_cpuinfo { - u_int8_t cpu_vendor; - u_int8_t cpu_rev; - u_int8_t cpu_impl; - u_int8_t tlb_type; - u_int32_t tlb_pgmask; - u_int16_t tlb_nentries; - u_int8_t icache_virtual; - boolean_t cache_coherent_dma; - boolean_t userlocal_reg; - struct { - u_int32_t ic_size; - u_int8_t ic_linesize; - u_int8_t ic_nways; - u_int16_t ic_nsets; - u_int32_t dc_size; - u_int8_t dc_linesize; - u_int8_t dc_nways; - u_int16_t dc_nsets; - } l1; - struct { - u_int32_t dc_size; - u_int8_t dc_linesize; - u_int8_t dc_nways; - u_int16_t dc_nsets; - } l2; -}; +#define PC98_SID_ACTIVE 0x80 +#define PC98_SID_MASK 0x7f +#define PC98_SID_386BSD 0x44 + +#define __DOSMID_386BSD (PC98_MID_386BSD | PC98_MID_BOOTABLE) +#define __DOSSID_386BSD (PC98_SID_386BSD | PC98_SID_ACTIVE) +#define PC98_PTYP_386BSD (__DOSSID_386BSD << 8 | __DOSMID_386BSD) -extern struct mips_cpuinfo cpuinfo; +struct pc98_partition { + unsigned char dp_mid; + unsigned char dp_sid; + unsigned char dp_dum1; + unsigned char dp_dum2; + unsigned char dp_ipl_sct; + unsigned char dp_ipl_head; + unsigned short dp_ipl_cyl; + unsigned char dp_ssect; /* starting sector */ + unsigned char dp_shd; /* starting head */ + unsigned short dp_scyl; /* starting cylinder */ + unsigned char dp_esect; /* end sector */ + unsigned char dp_ehd; /* end head */ + unsigned short dp_ecyl; /* end cylinder */ + unsigned char dp_name[16]; +}; +#ifdef CTASSERT +CTASSERT(sizeof (struct pc98_partition) == PC98_PARTSIZE); +#endif -#endif /* !LOCORE */ -#endif /* _KERNEL */ -#endif /* _CPUINFO_H_ */ +#endif /* !_SYS_DISK_PC98_H_ */ diff --git a/sys/mips/include/endian.h b/sys/mips/include/endian.h index ead6dc40bb8e..108c347dca49 100644 --- a/sys/mips/include/endian.h +++ b/sys/mips/include/endian.h @@ -10,7 +10,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/exec.h b/sys/mips/include/exec.h index 4650090f569b..2ca67de083a6 100644 --- a/sys/mips/include/exec.h +++ b/sys/mips/include/exec.h @@ -10,7 +10,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/limits.h b/sys/mips/include/limits.h index 238155311cd4..f30041ce54c2 100644 --- a/sys/mips/include/limits.h +++ b/sys/mips/include/limits.h @@ -10,7 +10,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/mips_opcode.h b/sys/mips/include/mips_opcode.h index fd0e9763e4af..c7c9a7e77b00 100644 --- a/sys/mips/include/mips_opcode.h +++ b/sys/mips/include/mips_opcode.h @@ -15,7 +15,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/param.h b/sys/mips/include/param.h index 37e1fd344f7d..8fca2a4d9d53 100644 --- a/sys/mips/include/param.h +++ b/sys/mips/include/param.h @@ -17,7 +17,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/pcb.h b/sys/mips/include/pcb.h index fa84a7d33f45..be92b2e7d0b8 100644 --- a/sys/mips/include/pcb.h +++ b/sys/mips/include/pcb.h @@ -17,7 +17,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/pmap.h b/sys/mips/include/pmap.h index cd6d71e135b1..70a9893bca36 100644 --- a/sys/mips/include/pmap.h +++ b/sys/mips/include/pmap.h @@ -14,7 +14,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/proc.h b/sys/mips/include/proc.h index 320eeddc09e2..35d21699bbfe 100644 --- a/sys/mips/include/proc.h +++ b/sys/mips/include/proc.h @@ -15,7 +15,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/profile.h b/sys/mips/include/profile.h index aac6e5dd43b9..de3a84955020 100644 --- a/sys/mips/include/profile.h +++ b/sys/mips/include/profile.h @@ -14,7 +14,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/ptrace.h b/sys/mips/include/ptrace.h index a34b6f9054f1..438660fd008b 100644 --- a/sys/mips/include/ptrace.h +++ b/sys/mips/include/ptrace.h @@ -10,7 +10,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/reg.h b/sys/mips/include/reg.h index 0dc36c6b3204..3c9d14f20a73 100644 --- a/sys/mips/include/reg.h +++ b/sys/mips/include/reg.h @@ -17,7 +17,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/regnum.h b/sys/mips/include/regnum.h index 829ca4608573..fcbed8dc1e19 100644 --- a/sys/mips/include/regnum.h +++ b/sys/mips/include/regnum.h @@ -17,7 +17,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/signal.h b/sys/mips/include/signal.h index f808d3ff6e40..511a07b07040 100644 --- a/sys/mips/include/signal.h +++ b/sys/mips/include/signal.h @@ -15,7 +15,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/sysarch.h b/sys/mips/include/sysarch.h index 350ad9583eec..25a909f51af1 100644 --- a/sys/mips/include/sysarch.h +++ b/sys/mips/include/sysarch.h @@ -10,7 +10,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/trap.h b/sys/mips/include/trap.h index 8029a48d7f85..d6f43a334f06 100644 --- a/sys/mips/include/trap.h +++ b/sys/mips/include/trap.h @@ -17,7 +17,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/ucontext.h b/sys/mips/include/ucontext.h index 2b1a952e80f0..303514bb8d4d 100644 --- a/sys/mips/include/ucontext.h +++ b/sys/mips/include/ucontext.h @@ -13,7 +13,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/varargs.h b/sys/mips/include/varargs.h index c916f3374379..2ab2dd488530 100644 --- a/sys/mips/include/varargs.h +++ b/sys/mips/include/varargs.h @@ -17,7 +17,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/include/vmparam.h b/sys/mips/include/vmparam.h index 020d0ac0184f..1c6f13ece0c4 100644 --- a/sys/mips/include/vmparam.h +++ b/sys/mips/include/vmparam.h @@ -18,7 +18,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/mips/autoconf.c b/sys/mips/mips/autoconf.c index e16c05c147d1..c86a3855959f 100644 --- a/sys/mips/mips/autoconf.c +++ b/sys/mips/mips/autoconf.c @@ -13,7 +13,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/mips/exception.S b/sys/mips/mips/exception.S index cb13621b24bb..d47a2b37b8aa 100644 --- a/sys/mips/mips/exception.S +++ b/sys/mips/mips/exception.S @@ -14,7 +14,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/mips/fp.S b/sys/mips/mips/fp.S index e20aba63ecea..cb7b4a7e6ef5 100644 --- a/sys/mips/mips/fp.S +++ b/sys/mips/mips/fp.S @@ -14,7 +14,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/mips/genassym.c b/sys/mips/mips/genassym.c index eb289eeacdbf..af23f9787c75 100644 --- a/sys/mips/mips/genassym.c +++ b/sys/mips/mips/genassym.c @@ -13,7 +13,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/mips/locore.S b/sys/mips/mips/locore.S index 37421d8f5003..ad28e4b14951 100644 --- a/sys/mips/mips/locore.S +++ b/sys/mips/mips/locore.S @@ -14,7 +14,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/mips/machdep.c b/sys/mips/mips/machdep.c index 9b375e0e55f6..0a3acdf16bbc 100644 --- a/sys/mips/mips/machdep.c +++ b/sys/mips/mips/machdep.c @@ -18,7 +18,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/mips/mem.c b/sys/mips/mips/mem.c index 30f4b34f57af..76cfb1151d05 100644 --- a/sys/mips/mips/mem.c +++ b/sys/mips/mips/mem.c @@ -16,7 +16,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/mips/pm_machdep.c b/sys/mips/mips/pm_machdep.c index 167706335c8d..86003d23f7a3 100644 --- a/sys/mips/mips/pm_machdep.c +++ b/sys/mips/mips/pm_machdep.c @@ -14,7 +14,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/mips/pmap.c b/sys/mips/mips/pmap.c index e1067b0045aa..f4d140706b29 100644 --- a/sys/mips/mips/pmap.c +++ b/sys/mips/mips/pmap.c @@ -18,7 +18,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/mips/swtch.S b/sys/mips/mips/swtch.S index ae33c39edd46..ed38aa405104 100644 --- a/sys/mips/mips/swtch.S +++ b/sys/mips/mips/swtch.S @@ -14,7 +14,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/mips/trap.c b/sys/mips/mips/trap.c index 1475d7b659d1..0a29eb3db8da 100644 --- a/sys/mips/mips/trap.c +++ b/sys/mips/mips/trap.c @@ -17,7 +17,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * diff --git a/sys/mips/mips/vm_machdep.c b/sys/mips/mips/vm_machdep.c index c364e3483da5..80b7c5989bd6 100644 --- a/sys/mips/mips/vm_machdep.c +++ b/sys/mips/mips/vm_machdep.c @@ -16,7 +16,7 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors + * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * |
