summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-17 17:51:34 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-17 17:51:34 +0000
commit08311cc3a95a4b8abf98477c46d7a9f18d360bdb (patch)
treef884ce7e11ee6c956521f7825659f4f1cc0ce974 /c/src/lib/libcpu
parentRemoved as part of patch rtems-rc-19991105-1.diff.gz from Ralf Corsepius (diff)
downloadrtems-08311cc3a95a4b8abf98477c46d7a9f18d360bdb.tar.bz2
Updated copyright notice.
Diffstat (limited to 'c/src/lib/libcpu')
-rw-r--r--c/src/lib/libcpu/hppa1.1/clock/clock.c3
-rw-r--r--c/src/lib/libcpu/hppa1.1/timer/timer.c3
-rw-r--r--c/src/lib/libcpu/mips/clock/ckinit.c3
-rw-r--r--c/src/lib/libcpu/mips/timer/timer.c3
-rw-r--r--c/src/lib/libcpu/mips64orion/clock/ckinit.c3
-rw-r--r--c/src/lib/libcpu/mips64orion/timer/timer.c3
-rw-r--r--c/src/lib/libcpu/powerpc/mpc821/clock/clock.c3
-rw-r--r--c/src/lib/libcpu/powerpc/mpc821/console-generic/console-generic.c3
-rw-r--r--c/src/lib/libcpu/powerpc/mpc821/timer/timer.c3
-rw-r--r--c/src/lib/libcpu/powerpc/mpc860/clock/clock.c3
-rw-r--r--c/src/lib/libcpu/powerpc/mpc860/console-generic/console-generic.c3
-rw-r--r--c/src/lib/libcpu/powerpc/mpc860/timer/timer.c3
-rw-r--r--c/src/lib/libcpu/powerpc/ppc403/clock/clock.c3
-rw-r--r--c/src/lib/libcpu/powerpc/ppc403/console/console.c.polled3
-rw-r--r--c/src/lib/libcpu/powerpc/ppc403/timer/timer.c3
-rw-r--r--c/src/lib/libcpu/sh/sh7032/include/null.h3
-rw-r--r--c/src/lib/libcpu/sh/sh7032/null/close.c3
-rw-r--r--c/src/lib/libcpu/sh/sh7032/null/cntrl.c3
-rw-r--r--c/src/lib/libcpu/sh/sh7032/null/init.c3
-rw-r--r--c/src/lib/libcpu/sh/sh7032/null/open.c3
-rw-r--r--c/src/lib/libcpu/sh/sh7032/null/read.c3
-rw-r--r--c/src/lib/libcpu/sh/sh7032/null/write.c3
-rw-r--r--c/src/lib/libcpu/sparc/include/erc32.h3
23 files changed, 23 insertions, 46 deletions
diff --git a/c/src/lib/libcpu/hppa1.1/clock/clock.c b/c/src/lib/libcpu/hppa1.1/clock/clock.c
index 99d0a69125..256d5bc2ae 100644
--- a/c/src/lib/libcpu/hppa1.1/clock/clock.c
+++ b/c/src/lib/libcpu/hppa1.1/clock/clock.c
@@ -3,9 +3,8 @@
* This routine initializes the interval timer on the
* PA-RISC CPU. The tick frequency is specified by the bsp.
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/hppa1.1/timer/timer.c b/c/src/lib/libcpu/hppa1.1/timer/timer.c
index 4b900ed96b..afb8a98e4f 100644
--- a/c/src/lib/libcpu/hppa1.1/timer/timer.c
+++ b/c/src/lib/libcpu/hppa1.1/timer/timer.c
@@ -5,9 +5,8 @@
* NOTE: It is important that the timer start/stop overhead be
* determined when porting or modifying this code.
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/mips/clock/ckinit.c b/c/src/lib/libcpu/mips/clock/ckinit.c
index c0cdd6f898..1f7ea546ed 100644
--- a/c/src/lib/libcpu/mips/clock/ckinit.c
+++ b/c/src/lib/libcpu/mips/clock/ckinit.c
@@ -20,9 +20,8 @@
*
* Derived from c/src/lib/libbsp/no_cpu/no_bsp/clock/ckinit.c:
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/mips/timer/timer.c b/c/src/lib/libcpu/mips/timer/timer.c
index dc7c61157e..23d68f4ec3 100644
--- a/c/src/lib/libcpu/mips/timer/timer.c
+++ b/c/src/lib/libcpu/mips/timer/timer.c
@@ -27,9 +27,8 @@
* NOTE: It is important that the timer start/stop overhead be
* determined when porting or modifying this code.
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/mips64orion/clock/ckinit.c b/c/src/lib/libcpu/mips64orion/clock/ckinit.c
index c0cdd6f898..1f7ea546ed 100644
--- a/c/src/lib/libcpu/mips64orion/clock/ckinit.c
+++ b/c/src/lib/libcpu/mips64orion/clock/ckinit.c
@@ -20,9 +20,8 @@
*
* Derived from c/src/lib/libbsp/no_cpu/no_bsp/clock/ckinit.c:
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/mips64orion/timer/timer.c b/c/src/lib/libcpu/mips64orion/timer/timer.c
index dc7c61157e..23d68f4ec3 100644
--- a/c/src/lib/libcpu/mips64orion/timer/timer.c
+++ b/c/src/lib/libcpu/mips64orion/timer/timer.c
@@ -27,9 +27,8 @@
* NOTE: It is important that the timer start/stop overhead be
* determined when porting or modifying this code.
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/powerpc/mpc821/clock/clock.c b/c/src/lib/libcpu/powerpc/mpc821/clock/clock.c
index a41bde3de5..a0fe3a02d2 100644
--- a/c/src/lib/libcpu/powerpc/mpc821/clock/clock.c
+++ b/c/src/lib/libcpu/powerpc/mpc821/clock/clock.c
@@ -25,9 +25,8 @@
*
* Derived from c/src/lib/libcpu/hppa1_1/clock/clock.c:
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/powerpc/mpc821/console-generic/console-generic.c b/c/src/lib/libcpu/powerpc/mpc821/console-generic/console-generic.c
index dbf978bb4d..325fcbf87d 100644
--- a/c/src/lib/libcpu/powerpc/mpc821/console-generic/console-generic.c
+++ b/c/src/lib/libcpu/powerpc/mpc821/console-generic/console-generic.c
@@ -30,9 +30,8 @@
* Saskatoon, Saskatchewan, CANADA
* eric@skatter.usask.ca
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/powerpc/mpc821/timer/timer.c b/c/src/lib/libcpu/powerpc/mpc821/timer/timer.c
index 4ad3b2fb2e..eefadb9079 100644
--- a/c/src/lib/libcpu/powerpc/mpc821/timer/timer.c
+++ b/c/src/lib/libcpu/powerpc/mpc821/timer/timer.c
@@ -32,9 +32,8 @@
*
* Derived from c/src/lib/libcpu/hppa1_1/timer/timer.c:
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/powerpc/mpc860/clock/clock.c b/c/src/lib/libcpu/powerpc/mpc860/clock/clock.c
index 2d01d786b2..25af11ce9a 100644
--- a/c/src/lib/libcpu/powerpc/mpc860/clock/clock.c
+++ b/c/src/lib/libcpu/powerpc/mpc860/clock/clock.c
@@ -25,9 +25,8 @@
*
* Derived from c/src/lib/libcpu/hppa1_1/clock/clock.c:
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/powerpc/mpc860/console-generic/console-generic.c b/c/src/lib/libcpu/powerpc/mpc860/console-generic/console-generic.c
index c713f9ebdc..e611b3bda8 100644
--- a/c/src/lib/libcpu/powerpc/mpc860/console-generic/console-generic.c
+++ b/c/src/lib/libcpu/powerpc/mpc860/console-generic/console-generic.c
@@ -32,9 +32,8 @@
* Saskatoon, Saskatchewan, CANADA
* eric@skatter.usask.ca
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/powerpc/mpc860/timer/timer.c b/c/src/lib/libcpu/powerpc/mpc860/timer/timer.c
index 6cfb6fdcbf..d5cb561c48 100644
--- a/c/src/lib/libcpu/powerpc/mpc860/timer/timer.c
+++ b/c/src/lib/libcpu/powerpc/mpc860/timer/timer.c
@@ -32,9 +32,8 @@
*
* Derived from c/src/lib/libcpu/hppa1_1/timer/timer.c:
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/powerpc/ppc403/clock/clock.c b/c/src/lib/libcpu/powerpc/ppc403/clock/clock.c
index dc019d6b7e..44f07eff1f 100644
--- a/c/src/lib/libcpu/powerpc/ppc403/clock/clock.c
+++ b/c/src/lib/libcpu/powerpc/ppc403/clock/clock.c
@@ -26,9 +26,8 @@
* COPYRIGHT (c) 1997 by IMD, Puchheim, Germany.
*
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/powerpc/ppc403/console/console.c.polled b/c/src/lib/libcpu/powerpc/ppc403/console/console.c.polled
index 976b5f975c..7b60f9c952 100644
--- a/c/src/lib/libcpu/powerpc/ppc403/console/console.c.polled
+++ b/c/src/lib/libcpu/powerpc/ppc403/console/console.c.polled
@@ -18,9 +18,8 @@
*
* Derived from c/src/lib/libbsp/no_cpu/no_bsp/console/console.c:
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/powerpc/ppc403/timer/timer.c b/c/src/lib/libcpu/powerpc/ppc403/timer/timer.c
index a45f2b396f..93a188da60 100644
--- a/c/src/lib/libcpu/powerpc/ppc403/timer/timer.c
+++ b/c/src/lib/libcpu/powerpc/ppc403/timer/timer.c
@@ -23,9 +23,8 @@
*
* Derived from c/src/lib/libcpu/hppa1.1/timer/timer.c:
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/sh/sh7032/include/null.h b/c/src/lib/libcpu/sh/sh7032/include/null.h
index 9ce4886c14..6c8e952d06 100644
--- a/c/src/lib/libcpu/sh/sh7032/include/null.h
+++ b/c/src/lib/libcpu/sh/sh7032/include/null.h
@@ -4,9 +4,8 @@
*
* Author: Ralf Corsepius (corsepiu@faw.uni-ulm.de)
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/sh/sh7032/null/close.c b/c/src/lib/libcpu/sh/sh7032/null/close.c
index cb5ac8cd65..49ec126008 100644
--- a/c/src/lib/libcpu/sh/sh7032/null/close.c
+++ b/c/src/lib/libcpu/sh/sh7032/null/close.c
@@ -14,9 +14,8 @@
* Output parameters:
* rval - NULL_SUCCESSFUL
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/sh/sh7032/null/cntrl.c b/c/src/lib/libcpu/sh/sh7032/null/cntrl.c
index cafc714279..308685523e 100644
--- a/c/src/lib/libcpu/sh/sh7032/null/cntrl.c
+++ b/c/src/lib/libcpu/sh/sh7032/null/cntrl.c
@@ -14,9 +14,8 @@
* Output parameters:
* rval - NULL_SUCCESSFUL
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/sh/sh7032/null/init.c b/c/src/lib/libcpu/sh/sh7032/null/init.c
index dcc1800f6b..653430f31c 100644
--- a/c/src/lib/libcpu/sh/sh7032/null/init.c
+++ b/c/src/lib/libcpu/sh/sh7032/null/init.c
@@ -14,9 +14,8 @@
* Output parameters:
* rval - NULL_SUCCESSFUL
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/sh/sh7032/null/open.c b/c/src/lib/libcpu/sh/sh7032/null/open.c
index 352f4b981e..43a9b22667 100644
--- a/c/src/lib/libcpu/sh/sh7032/null/open.c
+++ b/c/src/lib/libcpu/sh/sh7032/null/open.c
@@ -14,9 +14,8 @@
* Output parameters:
* rval - NULL_SUCCESSFUL
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/sh/sh7032/null/read.c b/c/src/lib/libcpu/sh/sh7032/null/read.c
index 895ba0c7f4..4c463b4b49 100644
--- a/c/src/lib/libcpu/sh/sh7032/null/read.c
+++ b/c/src/lib/libcpu/sh/sh7032/null/read.c
@@ -14,9 +14,8 @@
* Output parameters:
* rval - NULL_SUCCESSFUL
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/sh/sh7032/null/write.c b/c/src/lib/libcpu/sh/sh7032/null/write.c
index d9c4da434b..bdedb5d451 100644
--- a/c/src/lib/libcpu/sh/sh7032/null/write.c
+++ b/c/src/lib/libcpu/sh/sh7032/null/write.c
@@ -14,9 +14,8 @@
* Output parameters:
* rval - NULL_SUCCESSFUL
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/c/src/lib/libcpu/sparc/include/erc32.h b/c/src/lib/libcpu/sparc/include/erc32.h
index bfcec909b7..0d2e23da01 100644
--- a/c/src/lib/libcpu/sparc/include/erc32.h
+++ b/c/src/lib/libcpu/sparc/include/erc32.h
@@ -18,9 +18,8 @@
* + Memory Control Register
* + Interrupt Control
*
- * COPYRIGHT (c) 1989-1998.
+ * COPYRIGHT (c) 1989-1999.
* On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at