From 753873e54bcbc291642819d708b80f9c664656b1 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 22 Mar 2022 15:03:30 -0500 Subject: Update Eric Norum contact info and start to normalize file headers --- bsps/arm/csb337/umon/tfsDriver.c | 8 +++++-- bsps/m68k/gen68360/README | 9 +------- bsps/m68k/gen68360/btimer/btimer.c | 30 ++++++++++----------------- bsps/m68k/gen68360/clock/clock.c | 10 ++++----- bsps/m68k/gen68360/console/console.c | 17 ++++++--------- bsps/m68k/gen68360/include/bsp.h | 23 ++++++-------------- bsps/m68k/gen68360/start/alloc360.c | 10 ++++----- bsps/m68k/gen68360/start/init68360.c | 6 +----- bsps/m68k/gen68360/start/start.S | 25 +++++++++------------- bsps/m68k/mcf5206elite/start/gdbinit | 4 ++-- bsps/m68k/mcf52235/btimer/btimer.c | 16 +++++++------- bsps/m68k/mcf5225x/btimer/btimer.c | 16 +++++++------- bsps/m68k/mcf5329/btimer/btimer.c | 16 +++++++------- bsps/m68k/shared/fpsp/README | 2 +- bsps/m68k/shared/fpsp/rtems_skel.S | 2 +- bsps/m68k/uC5282/btimer/btimer.c | 16 +++++++------- bsps/m68k/uC5282/clock/clock.c | 16 +++++++------- bsps/m68k/uC5282/console/console.c | 17 ++++++++------- bsps/m68k/uC5282/include/bsp.h | 14 ++++++------- bsps/m68k/uC5282/include/tm27.h | 12 +++++------ bsps/m68k/uC5282/start/bspclean.c | 16 +++++++------- bsps/m68k/uC5282/start/bspstart.c | 12 +++++------ bsps/m68k/uC5282/start/init5282.c | 12 +++++------ bsps/m68k/uC5282/start/linkcmds | 16 +++++++------- bsps/powerpc/gen5200/console/console.c | 3 +-- bsps/powerpc/include/mpc5xx.h | 9 +------- bsps/powerpc/include/mpc8260.h | 9 +------- bsps/powerpc/include/mpc8xx.h | 9 +------- bsps/powerpc/mpc8260ads/dev/console-generic.c | 6 +----- bsps/powerpc/mpc8260ads/start/brg.c | 6 +----- bsps/powerpc/mpc8260ads/start/cp.c | 2 +- bsps/powerpc/mpc8260ads/start/dpram.c | 2 +- bsps/powerpc/ss555/dev/console-generic.c | 6 +----- bsps/powerpc/ss555/start/start.S | 2 +- bsps/powerpc/tqm8xx/console/console.c | 23 ++++++++------------ bsps/powerpc/tqm8xx/start/cp.c | 2 +- bsps/powerpc/tqm8xx/start/dpram.c | 2 +- 37 files changed, 170 insertions(+), 236 deletions(-) diff --git a/bsps/arm/csb337/umon/tfsDriver.c b/bsps/arm/csb337/umon/tfsDriver.c index caf3a4bd0d..8481c07daf 100644 --- a/bsps/arm/csb337/umon/tfsDriver.c +++ b/bsps/arm/csb337/umon/tfsDriver.c @@ -1,6 +1,10 @@ -/* - * tfsDriver.c - MicroMonitor TFS Hookup to RTEMS FS +/** + * @file * + * @brief MicroMonitor TFS Hookup to RTEMS FS + */ + +/* * Initial release: Oct 1, 2004 by Ed Sutter * * Modifications to support reference counting in the file system are diff --git a/bsps/m68k/gen68360/README b/bsps/m68k/gen68360/README index 0c595deb77..eec7d1554f 100644 --- a/bsps/m68k/gen68360/README +++ b/bsps/m68k/gen68360/README @@ -3,14 +3,7 @@ # # -# Please send any comments, improvements, or bug reports to: -# W. Eric Norum -# Deparment of Electrical Engineering -# 53 Campus Driver -# University of Saskatchewan -# Saskatoon, Saskatchewan, CANADA -# S7N 5A9 -# eric.norum@usask.ca +# Copyright (c) 1996 Eric Norum # # diff --git a/bsps/m68k/gen68360/btimer/btimer.c b/bsps/m68k/gen68360/btimer/btimer.c index 40a3e0a4c1..db9d9b4ef4 100644 --- a/bsps/m68k/gen68360/btimer/btimer.c +++ b/bsps/m68k/gen68360/btimer/btimer.c @@ -2,31 +2,23 @@ * Use TIMER 1 and TIMER 2 for Timing Test Suite * The hardware on the MC68360 makes these routines very simple. * - * Based on the `gen68302' board support package, and covered by the - * original distribution terms. + * NOTE: It is important that the timer start/stop overhead be + * determined when porting or modifying this code. * - * W. Eric Norum - * Saskatchewan Accelerator Laboratory - * University of Saskatchewan - * Saskatoon, Saskatchewan, CANADA - * eric@skatter.usask.ca */ /* + * Based on the `gen68302' board support package, and covered by the + * original distribution terms. * - * Input parameters: NONE - * - * Output parameters: NONE - * - * NOTE: It is important that the timer start/stop overhead be - * determined when porting or modifying this code. - * - * COPYRIGHT (c) 1989-1999. - * On-Line Applications Research Corporation (OAR). + * Copyright (c) 1996 Eric Norum + * + * COPYRIGHT (c) 1989-1999. + * On-Line Applications Research Corporation (OAR). * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.org/license/LICENSE. + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. */ #include diff --git a/bsps/m68k/gen68360/clock/clock.c b/bsps/m68k/gen68360/clock/clock.c index 4bd3204fcb..966b20dae4 100644 --- a/bsps/m68k/gen68360/clock/clock.c +++ b/bsps/m68k/gen68360/clock/clock.c @@ -3,12 +3,10 @@ * * The PIT has rather poor resolution, but it is easy to set up * and requires no housekeeping once it is going. - * - * W. Eric Norum - * Saskatchewan Accelerator Laboratory - * University of Saskatchewan - * Saskatoon, Saskatchewan, CANADA - * eric@skatter.usask.ca + */ + +/* + * Copyright (c) 1996 Eric Norum */ #include diff --git a/bsps/m68k/gen68360/console/console.c b/bsps/m68k/gen68360/console/console.c index 36d8470168..4d0f2bcb20 100644 --- a/bsps/m68k/gen68360/console/console.c +++ b/bsps/m68k/gen68360/console/console.c @@ -8,19 +8,14 @@ */ /* - * Author: - * W. Eric Norum - * Saskatchewan Accelerator Laboratory - * University of Saskatchewan - * Saskatoon, Saskatchewan, CANADA - * eric@skatter.usask.ca + * Copyright (c) 1996 Eric Norum * - * COPYRIGHT (c) 1989-1999. - * On-Line Applications Research Corporation (OAR). + * COPYRIGHT (c) 1989-1999. + * On-Line Applications Research Corporation (OAR). * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.org/license/LICENSE. + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. */ #include diff --git a/bsps/m68k/gen68360/include/bsp.h b/bsps/m68k/gen68360/include/bsp.h index ac228e6fb5..0859e133f3 100644 --- a/bsps/m68k/gen68360/include/bsp.h +++ b/bsps/m68k/gen68360/include/bsp.h @@ -7,25 +7,14 @@ */ /* + * Copyright (c) 1996 Eric Norum * - * Based on the `gen68302' board support package, and covered by the - * original distribution terms. + * COPYRIGHT (c) 1989-1999. + * On-Line Applications Research Corporation (OAR). * - * W. Eric Norum - * Saskatchewan Accelerator Laboratory - * University of Saskatchewan - * Saskatoon, Saskatchewan, CANADA - * eric@skatter.usask.ca - */ - -/* bsp.h - * - * COPYRIGHT (c) 1989-1999. - * On-Line Applications Research Corporation (OAR). - * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.org/license/LICENSE. + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. */ #ifndef LIBBSP_M68K_GEN68360_BSP_H diff --git a/bsps/m68k/gen68360/start/alloc360.c b/bsps/m68k/gen68360/start/alloc360.c index 53f90876e4..ec7abfa151 100644 --- a/bsps/m68k/gen68360/start/alloc360.c +++ b/bsps/m68k/gen68360/start/alloc360.c @@ -1,11 +1,9 @@ /* * MC68360 buffer descriptor allocation routines - * - * W. Eric Norum - * Saskatchewan Accelerator Laboratory - * University of Saskatchewan - * Saskatoon, Saskatchewan, CANADA - * eric@skatter.usask.ca + */ + +/* + * Copyright (c) 1996 Eric Norum */ #include diff --git a/bsps/m68k/gen68360/start/init68360.c b/bsps/m68k/gen68360/start/init68360.c index 67fed27a3b..1ae3266e7c 100644 --- a/bsps/m68k/gen68360/start/init68360.c +++ b/bsps/m68k/gen68360/start/init68360.c @@ -3,11 +3,7 @@ */ /* - * W. Eric Norum - * Saskatchewan Accelerator Laboratory - * University of Saskatchewan - * Saskatoon, Saskatchewan, CANADA - * eric@skatter.usask.ca + * Copyright (c) 1996 Eric Norum */ #include diff --git a/bsps/m68k/gen68360/start/start.S b/bsps/m68k/gen68360/start/start.S index e1f8122524..1157144314 100644 --- a/bsps/m68k/gen68360/start/start.S +++ b/bsps/m68k/gen68360/start/start.S @@ -3,22 +3,17 @@ * This file contains the entry point for the application. * It jumps to the BSP which is responsible for performing * all initialization. + */ + +/* + * Copyright (c) 1996 Eric Norum + + * COPYRIGHT (c) 1989-1999. + * On-Line Applications Research Corporation (OAR). * - * COPYRIGHT (c) 1989-1999. - * On-Line Applications Research Corporation (OAR). - * - * The license and distribution terms for this file may in - * the file LICENSE in this distribution or at - * http://www.rtems.org/license/LICENSE. - * - * Based on the `gen68302' board support package, and covered by the - * original distribution terms. - * - * W. Eric Norum - * Saskatchewan Accelerator Laboratory - * University of Saskatchewan - * Saskatoon, Saskatchewan, CANADA - * eric@skatter.usask.ca + * The license and distribution terms for this file may in + * the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. */ #include diff --git a/bsps/m68k/mcf5206elite/start/gdbinit b/bsps/m68k/mcf5206elite/start/gdbinit index 9954b8cb9a..5da23d3355 100644 --- a/bsps/m68k/mcf5206elite/start/gdbinit +++ b/bsps/m68k/mcf5206elite/start/gdbinit @@ -4,12 +4,12 @@ # The main purpose of this script is to perform minimum initialization of # processor so code can be loaded. Also, exception handling is performed. # + # Copyright (C) OKTET Ltd., St.-Petersburg, Russia # Author: Victor V. Vengerov # # This script partially based on gdb scripts written by -# Eric Norum, -# +# Eric Norum, # # The license and distribution terms for this file may be # found in the file LICENSE in this distribution or at diff --git a/bsps/m68k/mcf52235/btimer/btimer.c b/bsps/m68k/mcf52235/btimer/btimer.c index f9122542c2..28ec8e411d 100644 --- a/bsps/m68k/mcf52235/btimer/btimer.c +++ b/bsps/m68k/mcf52235/btimer/btimer.c @@ -2,15 +2,17 @@ * Timer Init * * Use the last DMA timer (DTIM3) as the diagnostic timer. + */ + +/* + * Copyright (c) 2005 Eric Norum * - * Author: W. Eric Norum - * - * COPYRIGHT (c) 2005. - * On-Line Applications Research Corporation (OAR). + * COPYRIGHT (c) 2005. + * On-Line Applications Research Corporation (OAR). * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.org/license/LICENSE. + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or a + * http://www.rtems.org/license/LICENSE. */ #include diff --git a/bsps/m68k/mcf5225x/btimer/btimer.c b/bsps/m68k/mcf5225x/btimer/btimer.c index ac0ca6d7d0..9f7c24482d 100644 --- a/bsps/m68k/mcf5225x/btimer/btimer.c +++ b/bsps/m68k/mcf5225x/btimer/btimer.c @@ -2,15 +2,17 @@ * Timer Init * * Use the last DMA timer (DTIM3) as the diagnostic timer. + */ + +/* + * Copyright (c) 2005 Eric Norum * - * Author: W. Eric Norum - * - * COPYRIGHT (c) 2005-2010. - * On-Line Applications Research Corporation (OAR). + * COPYRIGHT (c) 2005-2010. + * On-Line Applications Research Corporation (OAR). * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.org/license/LICENSE. + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. */ #include diff --git a/bsps/m68k/mcf5329/btimer/btimer.c b/bsps/m68k/mcf5329/btimer/btimer.c index 0f762c0a6a..ab21087fbf 100644 --- a/bsps/m68k/mcf5329/btimer/btimer.c +++ b/bsps/m68k/mcf5329/btimer/btimer.c @@ -2,15 +2,17 @@ * Timer Init * * Use the last DMA timer (DTIM3) as the diagnostic timer. + */ + +/* + * Copyright (c) 2005 Eric Norum * - * Author: W. Eric Norum - * - * COPYRIGHT (c) 2005. - * On-Line Applications Research Corporation (OAR). + * COPYRIGHT (c) 2005. + * On-Line Applications Research Corporation (OAR). * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.org/license/LICENSE. + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. */ #include diff --git a/bsps/m68k/shared/fpsp/README b/bsps/m68k/shared/fpsp/README index 9917fd4fd8..8607c525d5 100644 --- a/bsps/m68k/shared/fpsp/README +++ b/bsps/m68k/shared/fpsp/README @@ -1,7 +1,7 @@ M68040FPSP -- Motorola 68040 floating point support package ----------------------------------------------------------- -Modified for RTEMS by Eric Norum (eric@skatter.usask.ca) +Modified for RTEMS by Eric Norum (eric@norum.ca) To include these routines in your application call diff --git a/bsps/m68k/shared/fpsp/rtems_skel.S b/bsps/m68k/shared/fpsp/rtems_skel.S index 501387f136..79c574e59f 100644 --- a/bsps/m68k/shared/fpsp/rtems_skel.S +++ b/bsps/m68k/shared/fpsp/rtems_skel.S @@ -39,7 +39,7 @@ // // Modified for Linux-1.3.x by Jes Sorensen (jds@kom.auc.dk) -// Modified for RTEMS 4.0.0 by Eric Norum (eric@skatter.usask.ca) +// Modified for RTEMS 4.0.0 by Eric Norum (eric@snorum.ca) // #include diff --git a/bsps/m68k/uC5282/btimer/btimer.c b/bsps/m68k/uC5282/btimer/btimer.c index e01b9c8269..c60527670a 100644 --- a/bsps/m68k/uC5282/btimer/btimer.c +++ b/bsps/m68k/uC5282/btimer/btimer.c @@ -2,15 +2,17 @@ * Timer Init * * Use the last DMA timer (DTIM3) as the diagnostic timer. + */ + +/* + * Copyright (c) 2005 Eric Norum * - * Author: W. Eric Norum - * - * COPYRIGHT (c) 2005. - * On-Line Applications Research Corporation (OAR). + * COPYRIGHT (c) 2005. + * On-Line Applications Research Corporation (OAR). * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.org/license/LICENSE. + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. */ #include diff --git a/bsps/m68k/uC5282/clock/clock.c b/bsps/m68k/uC5282/clock/clock.c index da724a9aca..59d67af296 100644 --- a/bsps/m68k/uC5282/clock/clock.c +++ b/bsps/m68k/uC5282/clock/clock.c @@ -1,14 +1,16 @@ /* * Use the last periodic interval timer (PIT3) as the system clock. + */ + +/* + * Copyright (c) 2005 Eric Norum * - * Author: W. Eric Norum - * - * COPYRIGHT (c) 2005. - * On-Line Applications Research Corporation (OAR). + * COPYRIGHT (c) 2005. + * On-Line Applications Research Corporation (OAR). * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.org/license/LICENSE. + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. */ #include diff --git a/bsps/m68k/uC5282/console/console.c b/bsps/m68k/uC5282/console/console.c index 276d0c6f18..50a90d3dd9 100644 --- a/bsps/m68k/uC5282/console/console.c +++ b/bsps/m68k/uC5282/console/console.c @@ -2,16 +2,17 @@ * Multi UART console serial I/O. * * TO DO: Add DMA input/output + */ + +/* + * Copyright (c) 2005 Eric Norum * - * Author: W. Eric Norum - * - * COPYRIGHT (c) 2005. - * On-Line Applications Research Corporation (OAR). - * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.org/license/LICENSE. + * COPYRIGHT (c) 2005. + * On-Line Applications Research Corporation (OAR). * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. */ #include diff --git a/bsps/m68k/uC5282/include/bsp.h b/bsps/m68k/uC5282/include/bsp.h index e40a224404..7075d5cbe3 100644 --- a/bsps/m68k/uC5282/include/bsp.h +++ b/bsps/m68k/uC5282/include/bsp.h @@ -7,16 +7,14 @@ */ /* - * uC5282 BSP header file + * Copyright (c) 2005 Eric Norum * - * Author: W. Eric Norum + * COPYRIGHT (c) 2005. + * On-Line Applications Research Corporation (OAR). * - * COPYRIGHT (c) 2005. - * On-Line Applications Research Corporation (OAR). - * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.org/license/LICENSE. + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. */ #ifndef LIBBSP_M68K_UC5282_BSP_H diff --git a/bsps/m68k/uC5282/include/tm27.h b/bsps/m68k/uC5282/include/tm27.h index 9a24da3755..6d8e2cc344 100644 --- a/bsps/m68k/uC5282/include/tm27.h +++ b/bsps/m68k/uC5282/include/tm27.h @@ -5,14 +5,14 @@ */ /* - * Author: W. Eric Norum + * Copyright (c) 2005 Eric Norum * - * COPYRIGHT (c) 2005-2014. - * On-Line Applications Research Corporation (OAR). + * COPYRIGHT (c) 2005-2014. + * On-Line Applications Research Corporation (OAR). * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.org/license/LICENSE. + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. */ #ifndef _RTEMS_TMTEST27 diff --git a/bsps/m68k/uC5282/start/bspclean.c b/bsps/m68k/uC5282/start/bspclean.c index a344efd7bb..54e811cfe2 100644 --- a/bsps/m68k/uC5282/start/bspclean.c +++ b/bsps/m68k/uC5282/start/bspclean.c @@ -1,14 +1,16 @@ /* * This routine returns control from RTEMS to the monitor. + */ + +/* + * Copyright (c) 2005 Eric Norum * - * Author: W. Eric Norum - * - * COPYRIGHT (c) 2005. - * On-Line Applications Research Corporation (OAR). + * COPYRIGHT (c) 2005. + * On-Line Applications Research Corporation (OAR). * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.org/license/LICENSE. + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. */ #include diff --git a/bsps/m68k/uC5282/start/bspstart.c b/bsps/m68k/uC5282/start/bspstart.c index 33ce737ceb..0729778f2b 100644 --- a/bsps/m68k/uC5282/start/bspstart.c +++ b/bsps/m68k/uC5282/start/bspstart.c @@ -3,14 +3,14 @@ */ /* - * Author: W. Eric Norum + * Copyright (c) 2005 Eric Norum * - * COPYRIGHT (c) 2005. - * On-Line Applications Research Corporation (OAR). + * COPYRIGHT (c) 2005. + * On-Line Applications Research Corporation (OAR). * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.org/license/LICENSE. + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. */ #include diff --git a/bsps/m68k/uC5282/start/init5282.c b/bsps/m68k/uC5282/start/init5282.c index 201ee58c8e..f032591907 100644 --- a/bsps/m68k/uC5282/start/init5282.c +++ b/bsps/m68k/uC5282/start/init5282.c @@ -8,14 +8,14 @@ */ /* - * Author: W. Eric Norum + * Copyright (c) 2005 Eric Norum * - * COPYRIGHT (c) 2005. - * On-Line Applications Research Corporation (OAR). + * COPYRIGHT (c) 2005. + * On-Line Applications Research Corporation (OAR). * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.org/license/LICENSE. + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. */ #include diff --git a/bsps/m68k/uC5282/start/linkcmds b/bsps/m68k/uC5282/start/linkcmds index 2111e53036..6e08184120 100644 --- a/bsps/m68k/uC5282/start/linkcmds +++ b/bsps/m68k/uC5282/start/linkcmds @@ -1,15 +1,17 @@ /* * This file contains directives for the GNU linker which are specific * to the Arcturus uC DIMM ColdFire 5282 + */ + +/* + * Copyright (c) 2005 Eric Norum * - * Author: W. Eric Norum - * - * COPYRIGHT (c) 2005-2007. - * On-Line Applications Research Corporation (OAR). + * COPYRIGHT (c) 2005-2007. + * On-Line Applications Research Corporation (OAR). * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.org/license/LICENSE. + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. */ /* diff --git a/bsps/powerpc/gen5200/console/console.c b/bsps/powerpc/gen5200/console/console.c index 8f7129f23c..9071754859 100644 --- a/bsps/powerpc/gen5200/console/console.c +++ b/bsps/powerpc/gen5200/console/console.c @@ -16,8 +16,7 @@ * Copyright (C) 1998 by Frasca International, Inc. * * Derived from c/src/lib/libbsp/m68k/gen360/console/console.c - * Author: W. Eric Norum - * Saskatchewan Accelerator Laboratory, University of Saskatchewan, CANADA + * Author: W. Eric Norum * * COPYRIGHT (c) 1989, 2008. * On-Line Applications Research Corporation (OAR). diff --git a/bsps/powerpc/include/mpc5xx.h b/bsps/powerpc/include/mpc5xx.h index fc9b756cbf..fe5c1ac86c 100644 --- a/bsps/powerpc/include/mpc5xx.h +++ b/bsps/powerpc/include/mpc5xx.h @@ -11,14 +11,7 @@ * * Submitted By: * * * - * W. Eric Norum * - * Saskatchewan Accelerator Laboratory * - * University of Saskatchewan * - * 107 North Road * - * Saskatoon, Saskatchewan, CANADA * - * S7N 5C6 * - * * - * eric@skatter.usask.ca * + * Eric Norum * * * * Modified for use with the MPC860 (original code was for MC68360) * * by * diff --git a/bsps/powerpc/include/mpc8260.h b/bsps/powerpc/include/mpc8260.h index ea088ebae8..25e1d78be3 100644 --- a/bsps/powerpc/include/mpc8260.h +++ b/bsps/powerpc/include/mpc8260.h @@ -21,14 +21,7 @@ ** ** ** Submitted By: ** ** ** -** W. Eric Norum ** -** Saskatchewan Accelerator Laboratory ** -** University of Saskatchewan ** -** 107 North Road ** -** Saskatoon, Saskatchewan, CANADA ** -** S7N 5C6 ** -** ** -** eric@skatter.usask.ca ** +** Eric Norum ** ** ** ** Modified for use with the MPC860 (original code was for MC68360) ** ** by ** diff --git a/bsps/powerpc/include/mpc8xx.h b/bsps/powerpc/include/mpc8xx.h index 60baf60593..3e9be35d5d 100644 --- a/bsps/powerpc/include/mpc8xx.h +++ b/bsps/powerpc/include/mpc8xx.h @@ -9,14 +9,7 @@ ** ** ** Submitted By: ** ** ** -** W. Eric Norum ** -** Saskatchewan Accelerator Laboratory ** -** University of Saskatchewan ** -** 107 North Road ** -** Saskatoon, Saskatchewan, CANADA ** -** S7N 5C6 ** -** ** -** eric@skatter.usask.ca ** +** Eric Norum ** ** ** ** Modified for use with the MPC860 (original code was for MC68360) ** ** by ** diff --git a/bsps/powerpc/mpc8260ads/dev/console-generic.c b/bsps/powerpc/mpc8260ads/dev/console-generic.c index 4bfb6407eb..ed842c6652 100644 --- a/bsps/powerpc/mpc8260ads/dev/console-generic.c +++ b/bsps/powerpc/mpc8260ads/dev/console-generic.c @@ -27,11 +27,7 @@ * Copyright (C) 1998 by Frasca International, Inc. * * Derived from c/src/lib/libbsp/m68k/gen360/console/console.c written by: - * W. Eric Norum - * Saskatchewan Accelerator Laboratory - * University of Saskatchewan - * Saskatoon, Saskatchewan, CANADA - * eric@skatter.usask.ca + * Eric Norum * * COPYRIGHT (c) 1989-1998. * On-Line Applications Research Corporation (OAR). diff --git a/bsps/powerpc/mpc8260ads/start/brg.c b/bsps/powerpc/mpc8260ads/start/brg.c index 741f131a8d..596a67fa93 100644 --- a/bsps/powerpc/mpc8260ads/start/brg.c +++ b/bsps/powerpc/mpc8260ads/start/brg.c @@ -21,11 +21,7 @@ * Author: Jay Monkman (jmonkman@frasca.com) * Copyright (C) 1998 by Frasca International, Inc. * and - * W. Eric Norum - * Saskatchewan Accelerator Laboratory - * University of Saskatchewan - * Saskatoon, Saskatchewan, CANADA - * eric@skatter.usask.ca + * Eric Norum * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/bsps/powerpc/mpc8260ads/start/cp.c b/bsps/powerpc/mpc8260ads/start/cp.c index b8adf9feaf..76e6ae2f80 100644 --- a/bsps/powerpc/mpc8260ads/start/cp.c +++ b/bsps/powerpc/mpc8260ads/start/cp.c @@ -6,7 +6,7 @@ * Based on code (alloc860.c in eth_comm port) by * Jay Monkman (jmonkman@frasca.com), * which, in turn, is based on code by - * W. Eric Norum (eric@skatter.usask.ca). + * Eric Norum * * Modifications by Darlene Stewart (Darlene.Stewart@iit.nrc.ca): * Copyright (c) 1999, National Research Council of Canada diff --git a/bsps/powerpc/mpc8260ads/start/dpram.c b/bsps/powerpc/mpc8260ads/start/dpram.c index 8b74a9759c..fd0b6927eb 100644 --- a/bsps/powerpc/mpc8260ads/start/dpram.c +++ b/bsps/powerpc/mpc8260ads/start/dpram.c @@ -7,7 +7,7 @@ * Based on code (alloc860.c in eth_comm port) by * Jay Monkman (jmonkman@frasca.com), * which, in turn, is based on code by - * W. Eric Norum (eric@skatter.usask.ca). + * Eric Norum * * * Modifications : diff --git a/bsps/powerpc/ss555/dev/console-generic.c b/bsps/powerpc/ss555/dev/console-generic.c index 7e1629b714..6dfdf28749 100644 --- a/bsps/powerpc/ss555/dev/console-generic.c +++ b/bsps/powerpc/ss555/dev/console-generic.c @@ -21,11 +21,7 @@ * Copyright (C) 1998 by Frasca International, Inc. * * Derived from c/src/lib/libbsp/m68k/gen360/console/console.c written by: - * W. Eric Norum - * Saskatchewan Accelerator Laboratory - * University of Saskatchewan - * Saskatoon, Saskatchewan, CANADA - * eric@skatter.usask.ca + * Eric Norum * * COPYRIGHT (c) 1989-1998. * On-Line Applications Research Corporation (OAR). diff --git a/bsps/powerpc/ss555/start/start.S b/bsps/powerpc/ss555/start/start.S index 121403e1fc..924ef82e64 100644 --- a/bsps/powerpc/ss555/start/start.S +++ b/bsps/powerpc/ss555/start/start.S @@ -8,7 +8,7 @@ * This file is based on several others: * * (1) start360.s from the gen68360 BSP by - * W. Eric Norum (eric@skatter.usask.ca) + * W. Eric Norum (eric@norum.ca) * with the following copyright and license: * * COPYRIGHT (c) 1989-1998. diff --git a/bsps/powerpc/tqm8xx/console/console.c b/bsps/powerpc/tqm8xx/console/console.c index 0e0dace33e..f1bc7792c7 100644 --- a/bsps/powerpc/tqm8xx/console/console.c +++ b/bsps/powerpc/tqm8xx/console/console.c @@ -13,23 +13,18 @@ */ /* - * Author: - * W. Eric Norum - * Saskatchewan Accelerator Laboratory - * University of Saskatchewan - * Saskatoon, Saskatchewan, CANADA - * eric@skatter.usask.ca + * Copyright (c) 2005 Eric Norum * - * COPYRIGHT (c) 1989-1998. - * On-Line Applications Research Corporation (OAR). - * Copyright assigned to U.S. Government, 1994. + * COPYRIGHT (c) 1989-1998. + * On-Line Applications Research Corporation (OAR). + * Copyright assigned to U.S. Government, 1994. * - * Copyright (c) 2008 Thomas Doerfler, embedded brains GmbH. - * All rights reserved. + * Copyright (c) 2008 Thomas Doerfler, embedded brains GmbH. + * All rights reserved. * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.OARcorp.com/rtems/license.html. + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.OARcorp.com/rtems/license.html. */ #include diff --git a/bsps/powerpc/tqm8xx/start/cp.c b/bsps/powerpc/tqm8xx/start/cp.c index de38f0a5df..9938f37623 100644 --- a/bsps/powerpc/tqm8xx/start/cp.c +++ b/bsps/powerpc/tqm8xx/start/cp.c @@ -6,7 +6,7 @@ * Based on code (alloc860.c in eth_comm port) by * Jay Monkman (jmonkman@frasca.com), * which, in turn, is based on code by - * W. Eric Norum (eric@skatter.usask.ca). + * W. Eric Norum (eric@norum.ca). * * Modifications by Darlene Stewart (Darlene.Stewart@iit.nrc.ca): * Copyright (c) 1999, National Research Council of Canada diff --git a/bsps/powerpc/tqm8xx/start/dpram.c b/bsps/powerpc/tqm8xx/start/dpram.c index 4f6cb6d94a..f40e207c93 100644 --- a/bsps/powerpc/tqm8xx/start/dpram.c +++ b/bsps/powerpc/tqm8xx/start/dpram.c @@ -6,7 +6,7 @@ * Based on code (alloc860.c in eth_comm port) by * Jay Monkman (jmonkman@frasca.com), * which, in turn, is based on code by - * W. Eric Norum (eric@skatter.usask.ca). + * W. Eric Norum (eric@norum.ca). * * * Modifications : -- cgit v1.2.3