aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/arch/i386/include/arch/asm.h11
-rw-r--r--src/arch/i386/include/arch/intel.h2
-rw-r--r--src/arch/ppc/include/ppc.h1
-rw-r--r--src/arch/ppc/include/ppcreg.h1
-rw-r--r--src/arch/ppc/include/timer.h1
-rw-r--r--src/arch/ppc/lib/c_start.S1
-rw-r--r--src/arch/ppc/lib/cpuid.c1
-rw-r--r--src/arch/ppc/lib/floats.S1
-rw-r--r--src/arch/ppc/lib/floats.inc1
-rw-r--r--src/arch/ppc/lib/setup.c1
-rw-r--r--src/arch/ppc/lib/timebase.S1
-rw-r--r--src/arch/ppc/lib/timer.c1
-rw-r--r--src/config/linuxbios_c.ld3
-rw-r--r--src/console/console.c2
-rw-r--r--src/console/printk.c5
-rw-r--r--src/console/vsprintf.c5
-rw-r--r--src/cpu/p6/mtrr.c2
-rw-r--r--src/include/device/pci.h2
-rw-r--r--src/lib/uart8250.c4
-rw-r--r--src/mainboard/motorola/sandpoint/flash.h1
-rw-r--r--src/mainboard/motorola/sandpoint/flash/amd800.c1
-rw-r--r--src/mainboard/motorola/sandpoint/flash/flash.c1
-rw-r--r--src/mainboard/motorola/sandpoint/nvram.h1
-rw-r--r--src/mainboard/motorola/sandpoint/nvram/nvram.c1
-rw-r--r--src/northbridge/motorola/mpc107/i2c.c2
-rw-r--r--src/northbridge/motorola/mpc107/i2c.h2
-rw-r--r--src/pmc/altimus/mpc7410/mpc7410.c1
-rw-r--r--src/superio/NSC/pc87360/superio.c1
-rw-r--r--src/superio/NSC/pc97307/superio.c1
29 files changed, 2 insertions, 56 deletions
diff --git a/src/arch/i386/include/arch/asm.h b/src/arch/i386/include/arch/asm.h
index ea63e2d4eb..122b299d23 100644
--- a/src/arch/i386/include/arch/asm.h
+++ b/src/arch/i386/include/arch/asm.h
@@ -7,22 +7,11 @@
* Bootstrap code for the STPC Consumer
* Copyright (c) 1999 by Net Insight AB. All Rights Reserved.
*
- * $Id$
- *
*/
#define I386_ALIGN_TEXT 0
#define I386_ALIGN_DATA 0
-/*
- * XXX
- */
-#ifdef __ELF__
-#define EXT(x) x
-#else
-#define EXT(x) _ ## x
-#endif
-
#define STATIC(x) .align I386_ALIGN_TEXT; EXT(x):
#define GLOBAL(x) .globl EXT(x); STATIC(x)
#define ENTRY(x) .text; GLOBAL(x)
diff --git a/src/arch/i386/include/arch/intel.h b/src/arch/i386/include/arch/intel.h
index df6604e08e..e46e881558 100644
--- a/src/arch/i386/include/arch/intel.h
+++ b/src/arch/i386/include/arch/intel.h
@@ -27,8 +27,6 @@ it with the version available from LANL.
/*
* Bootstrap code for the Intel
*
- * $Id$
- *
*/
/*
diff --git a/src/arch/ppc/include/ppc.h b/src/arch/ppc/include/ppc.h
index fe4aa1654b..88154712ff 100644
--- a/src/arch/ppc/include/ppc.h
+++ b/src/arch/ppc/include/ppc.h
@@ -1,4 +1,3 @@
-/* $Id$ */
/* Copyright 2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
diff --git a/src/arch/ppc/include/ppcreg.h b/src/arch/ppc/include/ppcreg.h
index 5ec0dd9417..8e917ebeff 100644
--- a/src/arch/ppc/include/ppcreg.h
+++ b/src/arch/ppc/include/ppcreg.h
@@ -1,4 +1,3 @@
-/* $Id$ */
/* Copyright 2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
diff --git a/src/arch/ppc/include/timer.h b/src/arch/ppc/include/timer.h
index 9a2328f7cd..eacd7f01af 100644
--- a/src/arch/ppc/include/timer.h
+++ b/src/arch/ppc/include/timer.h
@@ -1,4 +1,3 @@
-/* $Id$ */
/* Copyright 2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
diff --git a/src/arch/ppc/lib/c_start.S b/src/arch/ppc/lib/c_start.S
index 1719fd7103..e88ce67f8c 100644
--- a/src/arch/ppc/lib/c_start.S
+++ b/src/arch/ppc/lib/c_start.S
@@ -1,4 +1,3 @@
-/* $Id$ */
/* Copyright 2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
diff --git a/src/arch/ppc/lib/cpuid.c b/src/arch/ppc/lib/cpuid.c
index ff4e3cccad..c80458d09c 100644
--- a/src/arch/ppc/lib/cpuid.c
+++ b/src/arch/ppc/lib/cpuid.c
@@ -1,4 +1,3 @@
-/* $Id$ */
/* Copyright 2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
diff --git a/src/arch/ppc/lib/floats.S b/src/arch/ppc/lib/floats.S
index 57b38cb9c3..393ebe338c 100644
--- a/src/arch/ppc/lib/floats.S
+++ b/src/arch/ppc/lib/floats.S
@@ -1,4 +1,3 @@
-/* $Id$ */
/* Copyright 1999-2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
diff --git a/src/arch/ppc/lib/floats.inc b/src/arch/ppc/lib/floats.inc
index 5c366af63f..c80120acc0 100644
--- a/src/arch/ppc/lib/floats.inc
+++ b/src/arch/ppc/lib/floats.inc
@@ -1,4 +1,3 @@
-/* $Id$ */
/* Copyright 1999-2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
diff --git a/src/arch/ppc/lib/setup.c b/src/arch/ppc/lib/setup.c
index 000a4b15a9..09fd4c06e2 100644
--- a/src/arch/ppc/lib/setup.c
+++ b/src/arch/ppc/lib/setup.c
@@ -1,4 +1,3 @@
-/* $Id$ */
/* Copyright 2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
diff --git a/src/arch/ppc/lib/timebase.S b/src/arch/ppc/lib/timebase.S
index 48171db498..248248bd82 100644
--- a/src/arch/ppc/lib/timebase.S
+++ b/src/arch/ppc/lib/timebase.S
@@ -1,4 +1,3 @@
-/* $Id$ */
/* Copyright 1999-2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
diff --git a/src/arch/ppc/lib/timer.c b/src/arch/ppc/lib/timer.c
index 8f968f1a5f..c82df1973b 100644
--- a/src/arch/ppc/lib/timer.c
+++ b/src/arch/ppc/lib/timer.c
@@ -1,4 +1,3 @@
-/* $Id$ */
/* Copyright 2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
diff --git a/src/config/linuxbios_c.ld b/src/config/linuxbios_c.ld
index 9cb2978c5d..4340f1a135 100644
--- a/src/config/linuxbios_c.ld
+++ b/src/config/linuxbios_c.ld
@@ -10,9 +10,6 @@
/*
* Bootstrap code for the STPC Consumer
* Copyright (c) 1999 by Net Insight AB. All Rights Reserved.
- *
- * $Id$
- *
*/
/*
diff --git a/src/console/console.c b/src/console/console.c
index 458fbb8fff..0f6fb07406 100644
--- a/src/console/console.c
+++ b/src/console/console.c
@@ -1,7 +1,5 @@
/*
* Bootstrap code for the INTEL
- * $Id$
- *
*/
#include <arch/io.h>
diff --git a/src/console/printk.c b/src/console/printk.c
index 67b0d4e19b..636424c12a 100644
--- a/src/console/printk.c
+++ b/src/console/printk.c
@@ -4,11 +4,6 @@
* Copyright (C) 1991, 1992 Linus Torvalds
*
*/
-
-#ifndef lint
-static char rcsid[] = "$Id$";
-#endif
-
//typedef void * va_list;
#include <stdarg.h>
diff --git a/src/console/vsprintf.c b/src/console/vsprintf.c
index b1310c62d1..cabede0991 100644
--- a/src/console/vsprintf.c
+++ b/src/console/vsprintf.c
@@ -8,11 +8,6 @@
/*
* Wirzenius wrote this portably, Torvalds fucked it up :-)
*/
-
-#ifndef lint
-static char rcsid[] = "$Id$";
-#endif
-
#include <stdarg.h>
#include <string.h>
diff --git a/src/cpu/p6/mtrr.c b/src/cpu/p6/mtrr.c
index 59de9b5ece..413acb1883 100644
--- a/src/cpu/p6/mtrr.c
+++ b/src/cpu/p6/mtrr.c
@@ -21,8 +21,6 @@
*
*
* Reference: Intel Architecture Software Developer's Manual, Volume 3: System Programming
- *
- * $Id$
*/
#include <console/console.h>
diff --git a/src/include/device/pci.h b/src/include/device/pci.h
index c49a2bdcc0..0b76de321a 100644
--- a/src/include/device/pci.h
+++ b/src/include/device/pci.h
@@ -1,6 +1,4 @@
/*
- * $Id$
- *
* PCI defines and function prototypes
* Copyright 1994, Drew Eckhardt
* Copyright 1997--1999 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
diff --git a/src/lib/uart8250.c b/src/lib/uart8250.c
index 778919b7ff..ceb4e4aa86 100644
--- a/src/lib/uart8250.c
+++ b/src/lib/uart8250.c
@@ -1,7 +1,3 @@
-#ifndef lint
-static char rcsid[] = "$Id$";
-#endif
-
/* Should support 8250, 16450, 16550, 16550A type uarts */
#include <arch/io.h>
#include <uart8250.h>
diff --git a/src/mainboard/motorola/sandpoint/flash.h b/src/mainboard/motorola/sandpoint/flash.h
index bd104a529c..1d4b812dbc 100644
--- a/src/mainboard/motorola/sandpoint/flash.h
+++ b/src/mainboard/motorola/sandpoint/flash.h
@@ -1,4 +1,3 @@
-/* $Id$ */
/* Copyright 2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
diff --git a/src/mainboard/motorola/sandpoint/flash/amd800.c b/src/mainboard/motorola/sandpoint/flash/amd800.c
index 607f3d7635..da56082bfc 100644
--- a/src/mainboard/motorola/sandpoint/flash/amd800.c
+++ b/src/mainboard/motorola/sandpoint/flash/amd800.c
@@ -1,4 +1,3 @@
-/* $Id$ */
/* Copyright 2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
diff --git a/src/mainboard/motorola/sandpoint/flash/flash.c b/src/mainboard/motorola/sandpoint/flash/flash.c
index 8db0f6aa57..3cd50c0827 100644
--- a/src/mainboard/motorola/sandpoint/flash/flash.c
+++ b/src/mainboard/motorola/sandpoint/flash/flash.c
@@ -1,4 +1,3 @@
-/* $Id$ */
/* Copyright 2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
diff --git a/src/mainboard/motorola/sandpoint/nvram.h b/src/mainboard/motorola/sandpoint/nvram.h
index 67b99f57f6..081ffa6758 100644
--- a/src/mainboard/motorola/sandpoint/nvram.h
+++ b/src/mainboard/motorola/sandpoint/nvram.h
@@ -1,4 +1,3 @@
-/* $Id$ */
/* Copyright 2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
/* Definitions for nvram devices - these are flash or eeprom devices used to
diff --git a/src/mainboard/motorola/sandpoint/nvram/nvram.c b/src/mainboard/motorola/sandpoint/nvram/nvram.c
index 45ca3f26e9..e6a293b029 100644
--- a/src/mainboard/motorola/sandpoint/nvram/nvram.c
+++ b/src/mainboard/motorola/sandpoint/nvram/nvram.c
@@ -1,4 +1,3 @@
-/* $Id$ */
/* Copyright 2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
diff --git a/src/northbridge/motorola/mpc107/i2c.c b/src/northbridge/motorola/mpc107/i2c.c
index 5f06a5136f..9b19f824a6 100644
--- a/src/northbridge/motorola/mpc107/i2c.c
+++ b/src/northbridge/motorola/mpc107/i2c.c
@@ -1,4 +1,4 @@
-/* $Id$
+/*
* (C) Copyright 2002
* Humboldt Solutions Ltd, <adrian@humboldt.co.uk>
*
diff --git a/src/northbridge/motorola/mpc107/i2c.h b/src/northbridge/motorola/mpc107/i2c.h
index c335a6f9ee..d54f599bd3 100644
--- a/src/northbridge/motorola/mpc107/i2c.h
+++ b/src/northbridge/motorola/mpc107/i2c.h
@@ -1,4 +1,4 @@
-/* $Id$
+/*
* (C) Copyright 2002
* Humboldt Solutions Ltd, <adrian@humboldt.co.uk>
*
diff --git a/src/pmc/altimus/mpc7410/mpc7410.c b/src/pmc/altimus/mpc7410/mpc7410.c
index cb556b0793..2d69149a69 100644
--- a/src/pmc/altimus/mpc7410/mpc7410.c
+++ b/src/pmc/altimus/mpc7410/mpc7410.c
@@ -1,4 +1,3 @@
-/* $Id$ */
/* Copyright 2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
diff --git a/src/superio/NSC/pc87360/superio.c b/src/superio/NSC/pc87360/superio.c
index 451bf4b8c4..aa4b668000 100644
--- a/src/superio/NSC/pc87360/superio.c
+++ b/src/superio/NSC/pc87360/superio.c
@@ -1,4 +1,3 @@
-/* $Id$ */
/* Copyright 2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */
diff --git a/src/superio/NSC/pc97307/superio.c b/src/superio/NSC/pc97307/superio.c
index 99f0eac6a2..621ad9045a 100644
--- a/src/superio/NSC/pc97307/superio.c
+++ b/src/superio/NSC/pc97307/superio.c
@@ -1,4 +1,3 @@
-/* $Id$ */
/* Copyright 2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */