summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2020-03-17 12:51:24 +0100
committerPatrick Georgi <pgeorgi@google.com>2020-03-17 18:26:34 +0000
commitf3f36faf352c72d793899a8b0dce60423a7480fa (patch)
treedd8f36735229971d4572c6a3f3136c0c9ce545dd /src/lib
parent8e04a1762b98f14c31b99bbb0a43c1280cc21a3a (diff)
downloadcoreboot-f3f36faf352c72d793899a8b0dce60423a7480fa.tar.gz
coreboot-f3f36faf352c72d793899a8b0dce60423a7480fa.tar.bz2
coreboot-f3f36faf352c72d793899a8b0dce60423a7480fa.zip
src (minus soc and mainboard): Remove copyright notices
They're listed in AUTHORS and often incorrect anyway, for example: - What's a "Copyright $year-present"? - Which incarnation of Google (Inc, LLC, ...) is the current copyright holder? - People sometimes have their editor auto-add themselves to files even though they only deleted stuff - Or they let the editor automatically update the copyright year, because why not? - Who is the copyright holder "The coreboot project Authors"? - Or "Generated Code"? Sidestep all these issues by simply not putting these notices in individual files, let's list all copyright holders in AUTHORS instead and use the git history to deal with the rest. Change-Id: I89b10076e0f4a4b3acd59160fb7abe349b228321 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39611 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: David Hendricks <david.hendricks@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/Makefile.inc1
-rw-r--r--src/lib/boot_device.c1
-rw-r--r--src/lib/bootblock.c1
-rw-r--r--src/lib/bootmem.c3
-rw-r--r--src/lib/bootmode.c1
-rw-r--r--src/lib/bootsplash.c1
-rw-r--r--src/lib/cbfs.c2
-rw-r--r--src/lib/cbmem_common.c1
-rw-r--r--src/lib/cbmem_console.c1
-rw-r--r--src/lib/cbmem_stage_cache.c1
-rw-r--r--src/lib/coreboot_table.c2
-rw-r--r--src/lib/crc_byte.c1
-rw-r--r--src/lib/decompressor.c1
-rw-r--r--src/lib/dimm_info_util.c1
-rw-r--r--src/lib/ext_stage_cache.c1
-rw-r--r--src/lib/fit_payload.c3
-rw-r--r--src/lib/fmap.c1
-rw-r--r--src/lib/gcc.c1
-rw-r--r--src/lib/gcov-glue.c1
-rw-r--r--src/lib/gnat/Makefile.inc1
-rw-r--r--src/lib/gpio.c1
-rw-r--r--src/lib/halt.c1
-rw-r--r--src/lib/hardwaremain.c1
-rw-r--r--src/lib/hw-time-timer.adb1
-rw-r--r--src/lib/imd.c1
-rw-r--r--src/lib/imd_cbmem.c1
-rw-r--r--src/lib/jpeg.c1
-rw-r--r--src/lib/jpeg.h1
-rw-r--r--src/lib/libgcc.c1
-rw-r--r--src/lib/memrange.c1
-rw-r--r--src/lib/nhlt.c1
-rw-r--r--src/lib/primitive_memtest.c1
-rw-r--r--src/lib/prog_loaders.c2
-rw-r--r--src/lib/prog_ops.c2
-rw-r--r--src/lib/program.ld1
-rw-r--r--src/lib/reg_script.c1
-rw-r--r--src/lib/region_file.c1
-rw-r--r--src/lib/reset.c1
-rw-r--r--src/lib/rmodule.c1
-rw-r--r--src/lib/romstage_handoff.c1
-rw-r--r--src/lib/rtc.c1
-rw-r--r--src/lib/selfboot.c3
-rw-r--r--src/lib/spd_bin.c1
-rw-r--r--src/lib/thread.c1
-rw-r--r--src/lib/timer.c1
-rw-r--r--src/lib/timer_queue.c1
-rw-r--r--src/lib/timestamp.c2
-rw-r--r--src/lib/trace.c1
-rw-r--r--src/lib/wrdd.c2
49 files changed, 0 insertions, 61 deletions
diff --git a/src/lib/Makefile.inc b/src/lib/Makefile.inc
index 2333f644688e..085f6b2821a5 100644
--- a/src/lib/Makefile.inc
+++ b/src/lib/Makefile.inc
@@ -1,7 +1,6 @@
#
# This file is part of the coreboot project.
#
-# Copyright (C) 2009 coresystems GmbH
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/src/lib/boot_device.c b/src/lib/boot_device.c
index e91a97f46169..dfb406619828 100644
--- a/src/lib/boot_device.c
+++ b/src/lib/boot_device.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright 2015 Google Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/bootblock.c b/src/lib/bootblock.c
index 386f4e38d712..0731a7206941 100644
--- a/src/lib/bootblock.c
+++ b/src/lib/bootblock.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright 2010 Google Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
diff --git a/src/lib/bootmem.c b/src/lib/bootmem.c
index 0397594ef05e..0fd5be0ac07f 100644
--- a/src/lib/bootmem.c
+++ b/src/lib/bootmem.c
@@ -1,9 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2003-2004 Eric Biederman
- * Copyright (C) 2005-2010 coresystems GmbH
- * Copyright (C) 2014 Google Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/bootmode.c b/src/lib/bootmode.c
index 06f6d05e4783..1356333b1551 100644
--- a/src/lib/bootmode.c
+++ b/src/lib/bootmode.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/bootsplash.c b/src/lib/bootsplash.c
index 8364afa0b9bc..f577e9eff0b4 100644
--- a/src/lib/bootsplash.c
+++ b/src/lib/bootsplash.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2019 Johanna Schander <coreboot@mimoja.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/cbfs.c b/src/lib/cbfs.c
index 7acfc224e547..b8f3d5cb6106 100644
--- a/src/lib/cbfs.c
+++ b/src/lib/cbfs.c
@@ -1,8 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2011 secunet Security Networks AG
- * Copyright 2015 Google Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/cbmem_common.c b/src/lib/cbmem_common.c
index b018acb4fa52..836406cbd632 100644
--- a/src/lib/cbmem_common.c
+++ b/src/lib/cbmem_common.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2013 Google, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/cbmem_console.c b/src/lib/cbmem_console.c
index f6a055e07944..270bd63dc54d 100644
--- a/src/lib/cbmem_console.c
+++ b/src/lib/cbmem_console.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/cbmem_stage_cache.c b/src/lib/cbmem_stage_cache.c
index dd56f62392af..f8a725471fe9 100644
--- a/src/lib/cbmem_stage_cache.c
+++ b/src/lib/cbmem_stage_cache.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright 2015 Google Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/coreboot_table.c b/src/lib/coreboot_table.c
index bd09697618be..947a33f162df 100644
--- a/src/lib/coreboot_table.c
+++ b/src/lib/coreboot_table.c
@@ -1,8 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2003-2004 Eric Biederman
- * Copyright (C) 2005-2010 coresystems GmbH
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
diff --git a/src/lib/crc_byte.c b/src/lib/crc_byte.c
index c04449d13f76..55529a234614 100644
--- a/src/lib/crc_byte.c
+++ b/src/lib/crc_byte.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2019 HardenedLinux
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/decompressor.c b/src/lib/decompressor.c
index 947105920a58..4b7cb975c575 100644
--- a/src/lib/decompressor.c
+++ b/src/lib/decompressor.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright 2018 Google Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
diff --git a/src/lib/dimm_info_util.c b/src/lib/dimm_info_util.c
index a45667ed254a..84c0a05ee2b8 100644
--- a/src/lib/dimm_info_util.c
+++ b/src/lib/dimm_info_util.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright 2018 Google LLC
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/ext_stage_cache.c b/src/lib/ext_stage_cache.c
index 466a65f53a20..825a7f0439e1 100644
--- a/src/lib/ext_stage_cache.c
+++ b/src/lib/ext_stage_cache.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright 2015 Google Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/fit_payload.c b/src/lib/fit_payload.c
index 83e9b8e90128..9e2cadc24d25 100644
--- a/src/lib/fit_payload.c
+++ b/src/lib/fit_payload.c
@@ -1,9 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2003-2004 Eric Biederman
- * Copyright (C) 2005-2010 coresystems GmbH
- * Copyright (C) 2014 Google Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/fmap.c b/src/lib/fmap.c
index c8843a734044..d004d8ed11b6 100644
--- a/src/lib/fmap.c
+++ b/src/lib/fmap.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright 2012-2015 Google Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/gcc.c b/src/lib/gcc.c
index 5a93f45e3497..b6208f528846 100644
--- a/src/lib/gcc.c
+++ b/src/lib/gcc.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2009 coresystems GmbH
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/gcov-glue.c b/src/lib/gcov-glue.c
index abeafa5546b8..48dc46d5638e 100644
--- a/src/lib/gcov-glue.c
+++ b/src/lib/gcov-glue.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2012 Google, Inc. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/gnat/Makefile.inc b/src/lib/gnat/Makefile.inc
index ebd04862bf07..456cf58eca0e 100644
--- a/src/lib/gnat/Makefile.inc
+++ b/src/lib/gnat/Makefile.inc
@@ -1,7 +1,6 @@
##
## This file is part of the coreboot project.
##
-## Copyright (C) 2016 Nico Huber <nico.h@gmx.de>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
diff --git a/src/lib/gpio.c b/src/lib/gpio.c
index 8ea3b5eb8e7c..a453bc7417a0 100644
--- a/src/lib/gpio.c
+++ b/src/lib/gpio.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright 2014 Google Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/halt.c b/src/lib/halt.c
index 67ae2ee5e908..d5db09755e0e 100644
--- a/src/lib/halt.c
+++ b/src/lib/halt.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright 2014 The ChromiumOS Authors
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
diff --git a/src/lib/hardwaremain.c b/src/lib/hardwaremain.c
index eba5f1262520..72e33760282e 100644
--- a/src/lib/hardwaremain.c
+++ b/src/lib/hardwaremain.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2013 Google, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/hw-time-timer.adb b/src/lib/hw-time-timer.adb
index 643cc9861027..e31b19ff629e 100644
--- a/src/lib/hw-time-timer.adb
+++ b/src/lib/hw-time-timer.adb
@@ -1,7 +1,6 @@
--
-- This file is part of the coreboot project.
--
--- Copyright (C) 2016 secunet Security Networks AG
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
diff --git a/src/lib/imd.c b/src/lib/imd.c
index 4fa8f7023b50..2cfd3ec5fc90 100644
--- a/src/lib/imd.c
+++ b/src/lib/imd.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright 2015 Google, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/imd_cbmem.c b/src/lib/imd_cbmem.c
index 5be7dc46f5e3..ed98947fccd7 100644
--- a/src/lib/imd_cbmem.c
+++ b/src/lib/imd_cbmem.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2013 Google, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/jpeg.c b/src/lib/jpeg.c
index e5b09ea7094a..47d3fe33c529 100644
--- a/src/lib/jpeg.c
+++ b/src/lib/jpeg.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2001 Michael Schroeder
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
diff --git a/src/lib/jpeg.h b/src/lib/jpeg.h
index cc2c65ddc8d1..de9be5b9e937 100644
--- a/src/lib/jpeg.h
+++ b/src/lib/jpeg.h
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2001 Michael Schroeder
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
diff --git a/src/lib/libgcc.c b/src/lib/libgcc.c
index b8bcd1c412a4..7fe20a1644bd 100644
--- a/src/lib/libgcc.c
+++ b/src/lib/libgcc.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright 2015 Google Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/memrange.c b/src/lib/memrange.c
index b9c09e878231..5fb40dfca7cf 100644
--- a/src/lib/memrange.c
+++ b/src/lib/memrange.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2013 Google, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/nhlt.c b/src/lib/nhlt.c
index 5001c385c5d2..d65bfda55c7e 100644
--- a/src/lib/nhlt.c
+++ b/src/lib/nhlt.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright 2015 Google, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/primitive_memtest.c b/src/lib/primitive_memtest.c
index aa013772a8f2..2e23b451074c 100644
--- a/src/lib/primitive_memtest.c
+++ b/src/lib/primitive_memtest.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright 2014 Google Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/prog_loaders.c b/src/lib/prog_loaders.c
index 178209c65da9..8cc8e12edb6f 100644
--- a/src/lib/prog_loaders.c
+++ b/src/lib/prog_loaders.c
@@ -1,8 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright 2015 Google Inc.
- * Copyright (C) 2018-2019 Eltan B.V.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/prog_ops.c b/src/lib/prog_ops.c
index 2641ac6d05e3..52ed465c0352 100644
--- a/src/lib/prog_ops.c
+++ b/src/lib/prog_ops.c
@@ -1,8 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2014 Imagination Technologies
- * Copyright 2015 Google Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/program.ld b/src/lib/program.ld
index a9d4e4829385..40bbb31e5a82 100644
--- a/src/lib/program.ld
+++ b/src/lib/program.ld
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright 2015 Google Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/reg_script.c b/src/lib/reg_script.c
index 299fd75028b5..baec94e342f8 100644
--- a/src/lib/reg_script.c
+++ b/src/lib/reg_script.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright 2013 Google Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/region_file.c b/src/lib/region_file.c
index 05d619c9a44b..d847e9872a34 100644
--- a/src/lib/region_file.c
+++ b/src/lib/region_file.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright 2016 Google Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/reset.c b/src/lib/reset.c
index 61163f13a348..feba3c230680 100644
--- a/src/lib/reset.c
+++ b/src/lib/reset.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright 2017 Google, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/rmodule.c b/src/lib/rmodule.c
index 96cee8aad3d9..88ab06d8a449 100644
--- a/src/lib/rmodule.c
+++ b/src/lib/rmodule.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2012 Google LLC
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/romstage_handoff.c b/src/lib/romstage_handoff.c
index 04ead0a83f78..b4b817ed668d 100644
--- a/src/lib/romstage_handoff.c
+++ b/src/lib/romstage_handoff.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright 2016 Google Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/rtc.c b/src/lib/rtc.c
index 3e4c3f77c380..8a807cef8226 100644
--- a/src/lib/rtc.c
+++ b/src/lib/rtc.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * (C) Copyright 2001 Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/selfboot.c b/src/lib/selfboot.c
index 11fdff3ba1eb..eef857719e64 100644
--- a/src/lib/selfboot.c
+++ b/src/lib/selfboot.c
@@ -1,9 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2003 Eric W. Biederman <ebiederm@xmission.com>
- * Copyright (C) 2009 Ron Minnich <rminnich@gmail.com>
- * Copyright (C) 2016 George Trudeau <george.trudeau@usherbrooke.ca>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/spd_bin.c b/src/lib/spd_bin.c
index 47c6dbd7cb76..df310f3e56be 100644
--- a/src/lib/spd_bin.c
+++ b/src/lib/spd_bin.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2016 Intel Corporation.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/thread.c b/src/lib/thread.c
index 281885ff9b26..d61222da639e 100644
--- a/src/lib/thread.c
+++ b/src/lib/thread.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2013 Google, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/timer.c b/src/lib/timer.c
index 19b423a39870..ef097e68b413 100644
--- a/src/lib/timer.c
+++ b/src/lib/timer.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright 2014 Google Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/timer_queue.c b/src/lib/timer_queue.c
index 5eaaa936f697..bc5d78240700 100644
--- a/src/lib/timer_queue.c
+++ b/src/lib/timer_queue.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2013 Google, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/timestamp.c b/src/lib/timestamp.c
index 9cbe30807cfc..4dc662386969 100644
--- a/src/lib/timestamp.c
+++ b/src/lib/timestamp.c
@@ -1,8 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
- * Copyright (C) 2017 Siemens AG
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/trace.c b/src/lib/trace.c
index 826fa3b67141..b028bcacd08b 100644
--- a/src/lib/trace.c
+++ b/src/lib/trace.c
@@ -1,7 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2011 Rudolf Marek <r.marek@assembler.cz>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/lib/wrdd.c b/src/lib/wrdd.c
index 53c3fbbeeeef..859c550db24e 100644
--- a/src/lib/wrdd.c
+++ b/src/lib/wrdd.c
@@ -1,8 +1,6 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2012 Google Inc.
- * Copyright (C) 2015 Intel Corp.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by