summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/mips
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2012-05-03 10:09:24 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2012-05-11 08:44:13 -0500
commit9b4422a2513e9c7f4c705050948d82b75331aaba (patch)
treea95a795dedb39af8ad097197d5fd82e3dcb6e4ac /c/src/lib/libcpu/mips
parentMiscellaneous - Clean up file headers so patterns followed (diff)
downloadrtems-9b4422a2513e9c7f4c705050948d82b75331aaba.tar.bz2
Remove All CVS Id Strings Possible Using a Script
Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
Diffstat (limited to 'c/src/lib/libcpu/mips')
-rw-r--r--c/src/lib/libcpu/mips/au1x00/include/au1x00.h2
-rw-r--r--c/src/lib/libcpu/mips/au1x00/vectorisrs/vectorisrs.c2
-rw-r--r--c/src/lib/libcpu/mips/clock/ckinit.c3
-rw-r--r--c/src/lib/libcpu/mips/clock/clock.S2
-rw-r--r--c/src/lib/libcpu/mips/clock/clock.h2
-rw-r--r--c/src/lib/libcpu/mips/mongoosev/README4
-rw-r--r--c/src/lib/libcpu/mips/mongoosev/duart/mg5uart.c2
-rw-r--r--c/src/lib/libcpu/mips/mongoosev/duart/mg5uart.h2
-rw-r--r--c/src/lib/libcpu/mips/mongoosev/duart/mg5uart_reg.c2
-rw-r--r--c/src/lib/libcpu/mips/mongoosev/include/mongoose-v.h2
-rw-r--r--c/src/lib/libcpu/mips/mongoosev/vectorisrs/vectorisrs.c2
-rw-r--r--c/src/lib/libcpu/mips/r46xx/vectorisrs/vectorisrs.c4
-rw-r--r--c/src/lib/libcpu/mips/rm52xx/include/rm5231.h2
-rw-r--r--c/src/lib/libcpu/mips/shared/cache/cache.c2
-rw-r--r--c/src/lib/libcpu/mips/shared/interrupts/installisrentries.c4
-rw-r--r--c/src/lib/libcpu/mips/shared/interrupts/interruptmask.c4
-rw-r--r--c/src/lib/libcpu/mips/shared/interrupts/isr_entries.S2
-rw-r--r--c/src/lib/libcpu/mips/shared/interrupts/isr_entries.h2
-rw-r--r--c/src/lib/libcpu/mips/timer/gettime.S2
-rw-r--r--c/src/lib/libcpu/mips/timer/timer.c2
-rw-r--r--c/src/lib/libcpu/mips/tx39/include/tx3904.h2
-rw-r--r--c/src/lib/libcpu/mips/tx39/vectorisrs/vectorisrs.c2
-rw-r--r--c/src/lib/libcpu/mips/tx49/include/tx4925.h2
-rw-r--r--c/src/lib/libcpu/mips/tx49/include/tx4938.h2
24 files changed, 0 insertions, 57 deletions
diff --git a/c/src/lib/libcpu/mips/au1x00/include/au1x00.h b/c/src/lib/libcpu/mips/au1x00/include/au1x00.h
index ce84e9803a..2421505d23 100644
--- a/c/src/lib/libcpu/mips/au1x00/include/au1x00.h
+++ b/c/src/lib/libcpu/mips/au1x00/include/au1x00.h
@@ -11,8 +11,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifndef __AU1X00_H__
diff --git a/c/src/lib/libcpu/mips/au1x00/vectorisrs/vectorisrs.c b/c/src/lib/libcpu/mips/au1x00/vectorisrs/vectorisrs.c
index 7eb1ae1240..7383adae66 100644
--- a/c/src/lib/libcpu/mips/au1x00/vectorisrs/vectorisrs.c
+++ b/c/src/lib/libcpu/mips/au1x00/vectorisrs/vectorisrs.c
@@ -7,8 +7,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#include <rtems.h>
diff --git a/c/src/lib/libcpu/mips/clock/ckinit.c b/c/src/lib/libcpu/mips/clock/ckinit.c
index 54ab69d1e0..ec17f9a2f2 100644
--- a/c/src/lib/libcpu/mips/clock/ckinit.c
+++ b/c/src/lib/libcpu/mips/clock/ckinit.c
@@ -1,4 +1,3 @@
-
/* ckinit.c
*
* This file contains the clock driver initialization for the IDT 4650.
@@ -26,8 +25,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
/*
diff --git a/c/src/lib/libcpu/mips/clock/clock.S b/c/src/lib/libcpu/mips/clock/clock.S
index de62337faa..2e9ff1ea26 100644
--- a/c/src/lib/libcpu/mips/clock/clock.S
+++ b/c/src/lib/libcpu/mips/clock/clock.S
@@ -16,8 +16,6 @@
* software without specific, written prior permission.
* Transition Networks makes no representations about the suitability
* of this software for any purpose.
- *
- * $Id$
*/
/* @(#)clock.S 08/20/96 1.2 */
diff --git a/c/src/lib/libcpu/mips/clock/clock.h b/c/src/lib/libcpu/mips/clock/clock.h
index b349d298e3..7b2fc9244f 100644
--- a/c/src/lib/libcpu/mips/clock/clock.h
+++ b/c/src/lib/libcpu/mips/clock/clock.h
@@ -16,8 +16,6 @@
* software without specific, written prior permission.
* Transition Networks makes no representations about the suitability
* of this software for any purpose.
- *
- * $Id$
*/
/* @(#)clock.h 08/20/96 1.2 */
diff --git a/c/src/lib/libcpu/mips/mongoosev/README b/c/src/lib/libcpu/mips/mongoosev/README
index 76a8a7529e..61d0fc6cf4 100644
--- a/c/src/lib/libcpu/mips/mongoosev/README
+++ b/c/src/lib/libcpu/mips/mongoosev/README
@@ -1,7 +1,3 @@
-#
-# $Id$
-#
-
The Synova Mongoose-V is a radiation hardened derivative of the
LSI 33K with on-CPU peripherals.
diff --git a/c/src/lib/libcpu/mips/mongoosev/duart/mg5uart.c b/c/src/lib/libcpu/mips/mongoosev/duart/mg5uart.c
index d7fb5ece7b..51ecacdc49 100644
--- a/c/src/lib/libcpu/mips/mongoosev/duart/mg5uart.c
+++ b/c/src/lib/libcpu/mips/mongoosev/duart/mg5uart.c
@@ -12,8 +12,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#include <rtems.h>
diff --git a/c/src/lib/libcpu/mips/mongoosev/duart/mg5uart.h b/c/src/lib/libcpu/mips/mongoosev/duart/mg5uart.h
index 03de44c8a9..7e8b53e0ec 100644
--- a/c/src/lib/libcpu/mips/mongoosev/duart/mg5uart.h
+++ b/c/src/lib/libcpu/mips/mongoosev/duart/mg5uart.h
@@ -6,8 +6,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifndef _MG5UART_H_
diff --git a/c/src/lib/libcpu/mips/mongoosev/duart/mg5uart_reg.c b/c/src/lib/libcpu/mips/mongoosev/duart/mg5uart_reg.c
index 316896665a..d2467c5339 100644
--- a/c/src/lib/libcpu/mips/mongoosev/duart/mg5uart_reg.c
+++ b/c/src/lib/libcpu/mips/mongoosev/duart/mg5uart_reg.c
@@ -11,8 +11,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#include <rtems.h>
diff --git a/c/src/lib/libcpu/mips/mongoosev/include/mongoose-v.h b/c/src/lib/libcpu/mips/mongoosev/include/mongoose-v.h
index 8ad030e5f4..6481ae7c68 100644
--- a/c/src/lib/libcpu/mips/mongoosev/include/mongoose-v.h
+++ b/c/src/lib/libcpu/mips/mongoosev/include/mongoose-v.h
@@ -11,8 +11,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifndef __MONGOOSEV_h
diff --git a/c/src/lib/libcpu/mips/mongoosev/vectorisrs/vectorisrs.c b/c/src/lib/libcpu/mips/mongoosev/vectorisrs/vectorisrs.c
index 421f95da58..f54bacc140 100644
--- a/c/src/lib/libcpu/mips/mongoosev/vectorisrs/vectorisrs.c
+++ b/c/src/lib/libcpu/mips/mongoosev/vectorisrs/vectorisrs.c
@@ -7,8 +7,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#include <rtems.h>
diff --git a/c/src/lib/libcpu/mips/r46xx/vectorisrs/vectorisrs.c b/c/src/lib/libcpu/mips/r46xx/vectorisrs/vectorisrs.c
index 12f44efe36..681cd85531 100644
--- a/c/src/lib/libcpu/mips/r46xx/vectorisrs/vectorisrs.c
+++ b/c/src/lib/libcpu/mips/r46xx/vectorisrs/vectorisrs.c
@@ -1,7 +1,3 @@
-/*
- * $Id$
- */
-
#include <rtems.h>
#include <stdlib.h>
diff --git a/c/src/lib/libcpu/mips/rm52xx/include/rm5231.h b/c/src/lib/libcpu/mips/rm52xx/include/rm5231.h
index 9982ac2c2c..f2fcd96b9b 100644
--- a/c/src/lib/libcpu/mips/rm52xx/include/rm5231.h
+++ b/c/src/lib/libcpu/mips/rm52xx/include/rm5231.h
@@ -11,8 +11,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifndef __RM5231_h
diff --git a/c/src/lib/libcpu/mips/shared/cache/cache.c b/c/src/lib/libcpu/mips/shared/cache/cache.c
index 9af01feffd..384e7c8c19 100644
--- a/c/src/lib/libcpu/mips/shared/cache/cache.c
+++ b/c/src/lib/libcpu/mips/shared/cache/cache.c
@@ -1,7 +1,5 @@
/*
* Cache Management Support Routines for the MIPS
- *
- * $Id$
*/
#include <rtems.h>
diff --git a/c/src/lib/libcpu/mips/shared/interrupts/installisrentries.c b/c/src/lib/libcpu/mips/shared/interrupts/installisrentries.c
index eba9f61bca..9380a26f37 100644
--- a/c/src/lib/libcpu/mips/shared/interrupts/installisrentries.c
+++ b/c/src/lib/libcpu/mips/shared/interrupts/installisrentries.c
@@ -1,7 +1,3 @@
-/*
- * $Id$
- */
-
#include <rtems.h>
#include <rtems/mips/idtcpu.h>
#include <stdlib.h>
diff --git a/c/src/lib/libcpu/mips/shared/interrupts/interruptmask.c b/c/src/lib/libcpu/mips/shared/interrupts/interruptmask.c
index 27be57b46b..9f2b679a77 100644
--- a/c/src/lib/libcpu/mips/shared/interrupts/interruptmask.c
+++ b/c/src/lib/libcpu/mips/shared/interrupts/interruptmask.c
@@ -1,7 +1,3 @@
-/*
- * $Id: interruptmask.c,v 1.0 2006/04/04 05:18:49
- */
-
#include <rtems.h>
/*
diff --git a/c/src/lib/libcpu/mips/shared/interrupts/isr_entries.S b/c/src/lib/libcpu/mips/shared/interrupts/isr_entries.S
index 6c1f4a1637..540278a79e 100644
--- a/c/src/lib/libcpu/mips/shared/interrupts/isr_entries.S
+++ b/c/src/lib/libcpu/mips/shared/interrupts/isr_entries.S
@@ -7,8 +7,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#include <rtems/asm.h>
diff --git a/c/src/lib/libcpu/mips/shared/interrupts/isr_entries.h b/c/src/lib/libcpu/mips/shared/interrupts/isr_entries.h
index 9f5bd276b9..7e8a29fb61 100644
--- a/c/src/lib/libcpu/mips/shared/interrupts/isr_entries.h
+++ b/c/src/lib/libcpu/mips/shared/interrupts/isr_entries.h
@@ -10,8 +10,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifndef _ISR_ENTRIES_H
diff --git a/c/src/lib/libcpu/mips/timer/gettime.S b/c/src/lib/libcpu/mips/timer/gettime.S
index 62cbe7cf7d..2661dfee33 100644
--- a/c/src/lib/libcpu/mips/timer/gettime.S
+++ b/c/src/lib/libcpu/mips/timer/gettime.S
@@ -16,8 +16,6 @@
* software without specific, written prior permission.
* Transition Networks makes no representations about the suitability
* of this software for any purpose.
- *
- * $Id$
*/
/* @(#)gettime.S 08/20/96 1.2 */
diff --git a/c/src/lib/libcpu/mips/timer/timer.c b/c/src/lib/libcpu/mips/timer/timer.c
index a8a7aacc21..69378ea84f 100644
--- a/c/src/lib/libcpu/mips/timer/timer.c
+++ b/c/src/lib/libcpu/mips/timer/timer.c
@@ -33,8 +33,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
/*
diff --git a/c/src/lib/libcpu/mips/tx39/include/tx3904.h b/c/src/lib/libcpu/mips/tx39/include/tx3904.h
index c55a3222ea..d9e6b95ab8 100644
--- a/c/src/lib/libcpu/mips/tx39/include/tx3904.h
+++ b/c/src/lib/libcpu/mips/tx39/include/tx3904.h
@@ -13,8 +13,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifndef __TX3904_h
diff --git a/c/src/lib/libcpu/mips/tx39/vectorisrs/vectorisrs.c b/c/src/lib/libcpu/mips/tx39/vectorisrs/vectorisrs.c
index a5b4e182eb..280553363f 100644
--- a/c/src/lib/libcpu/mips/tx39/vectorisrs/vectorisrs.c
+++ b/c/src/lib/libcpu/mips/tx39/vectorisrs/vectorisrs.c
@@ -1,7 +1,5 @@
/*
* TX3904 Interrupt Vectoring
- *
- * $Id$
*/
#include <rtems.h>
diff --git a/c/src/lib/libcpu/mips/tx49/include/tx4925.h b/c/src/lib/libcpu/mips/tx49/include/tx4925.h
index 925da94fef..f2a60b2873 100644
--- a/c/src/lib/libcpu/mips/tx49/include/tx4925.h
+++ b/c/src/lib/libcpu/mips/tx49/include/tx4925.h
@@ -11,8 +11,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifndef __TX4925_h
diff --git a/c/src/lib/libcpu/mips/tx49/include/tx4938.h b/c/src/lib/libcpu/mips/tx49/include/tx4938.h
index 07733075f4..709c7c576b 100644
--- a/c/src/lib/libcpu/mips/tx49/include/tx4938.h
+++ b/c/src/lib/libcpu/mips/tx49/include/tx4938.h
@@ -11,8 +11,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifndef __TX4938_h