summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/commonlib/include/commonlib/sd_mmc_ctrlr.h3
-rw-r--r--src/commonlib/include/commonlib/sdhci.h3
-rw-r--r--src/commonlib/storage/bouncebuf.c3
-rw-r--r--src/commonlib/storage/bouncebuf.h3
-rw-r--r--src/commonlib/storage/mmc.c3
-rw-r--r--src/commonlib/storage/sd.c3
-rw-r--r--src/commonlib/storage/sd_mmc.c3
-rw-r--r--src/commonlib/storage/sdhci.c3
-rw-r--r--src/commonlib/storage/sdhci_adma.c3
-rw-r--r--src/commonlib/storage/sdhci_display.c3
-rw-r--r--src/commonlib/storage/storage.c3
-rw-r--r--src/commonlib/storage/storage_erase.c3
-rw-r--r--src/commonlib/storage/storage_write.c3
-rw-r--r--src/ec/google/chromeec/ec_message.h5
-rw-r--r--src/ec/kontron/kempld/kempld_i2c.c12
-rw-r--r--src/include/b64_decode.h2
-rw-r--r--src/include/device_tree.h6
-rw-r--r--src/include/endian.h2
-rw-r--r--src/include/fit.h6
-rw-r--r--src/include/fit_payload.h5
-rw-r--r--src/include/list.h6
-rw-r--r--src/include/memory_info.h5
-rw-r--r--src/include/spi-generic.h3
-rw-r--r--src/include/spi_flash.h5
-rw-r--r--src/lib/b64_decode.c2
-rw-r--r--src/lib/device_tree.c6
-rw-r--r--src/lib/fit.c6
-rw-r--r--src/lib/hexdump.c2
-rw-r--r--src/lib/list.c6
-rw-r--r--src/mainboard/emulation/qemu-i440fx/dsdt.asl5
-rw-r--r--src/mainboard/emulation/qemu-q35/dsdt.asl7
-rw-r--r--src/mainboard/intel/galileo/vboot.c2
-rw-r--r--src/mainboard/intel/galileo/vboot.fmd2
-rw-r--r--src/mainboard/ti/beaglebone/leds.c2
-rw-r--r--src/mainboard/ti/beaglebone/leds.h2
-rw-r--r--src/soc/nvidia/tegra210/include/soc/mipi_display.h4
-rw-r--r--src/soc/nvidia/tegra210/include/soc/mipi_dsi.h4
-rw-r--r--src/soc/qualcomm/qcs405/clock.c5
-rw-r--r--src/soc/qualcomm/qcs405/include/soc/clock.h5
-rw-r--r--src/soc/qualcomm/sc7180/include/soc/qcom_qup_se.h2
-rw-r--r--src/soc/qualcomm/sc7180/include/soc/qupv3_config.h5
-rw-r--r--src/soc/qualcomm/sc7180/include/soc/qupv3_i2c.h5
-rw-r--r--src/soc/qualcomm/sc7180/include/soc/qupv3_spi.h2
-rw-r--r--src/soc/qualcomm/sc7180/qcom_qup_se.c2
-rw-r--r--src/soc/qualcomm/sc7180/qupv3_config.c5
-rw-r--r--src/soc/qualcomm/sc7180/qupv3_i2c.c5
-rw-r--r--src/soc/qualcomm/sc7180/qupv3_spi.c2
-rw-r--r--src/soc/qualcomm/sc7180/qupv3_uart.c2
-rw-r--r--src/soc/samsung/exynos5420/dmc_init_ddr3.c3
-rw-r--r--src/soc/samsung/exynos5420/dp.c2
-rw-r--r--src/soc/samsung/exynos5420/dp_lowlevel.c2
-rw-r--r--src/soc/samsung/exynos5420/fimd.c3
-rw-r--r--src/southbridge/intel/common/spi.h5
53 files changed, 52 insertions, 149 deletions
diff --git a/src/commonlib/include/commonlib/sd_mmc_ctrlr.h b/src/commonlib/include/commonlib/sd_mmc_ctrlr.h
index 0807d2e2c5e1..d681d2ecb25b 100644
--- a/src/commonlib/include/commonlib/sd_mmc_ctrlr.h
+++ b/src/commonlib/include/commonlib/sd_mmc_ctrlr.h
@@ -9,7 +9,8 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ */
+/*
* Controller independent definitions
*/
#ifndef __COMMONLIB_SD_MMC_CTRLR_H__
diff --git a/src/commonlib/include/commonlib/sdhci.h b/src/commonlib/include/commonlib/sdhci.h
index 126ef0176ba0..2ce3e8a39f9f 100644
--- a/src/commonlib/include/commonlib/sdhci.h
+++ b/src/commonlib/include/commonlib/sdhci.h
@@ -9,7 +9,8 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ */
+/*
* SD host controller specific definitions
*/
#ifndef __COMMONLIB_SDHCI_H__
diff --git a/src/commonlib/storage/bouncebuf.c b/src/commonlib/storage/bouncebuf.c
index 6bc5cf410399..722a6c8d0ba2 100644
--- a/src/commonlib/storage/bouncebuf.c
+++ b/src/commonlib/storage/bouncebuf.c
@@ -9,7 +9,8 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ */
+/*
* Generic bounce buffer implementation
*/
diff --git a/src/commonlib/storage/bouncebuf.h b/src/commonlib/storage/bouncebuf.h
index 6a2e75961451..615f73e2f671 100644
--- a/src/commonlib/storage/bouncebuf.h
+++ b/src/commonlib/storage/bouncebuf.h
@@ -9,7 +9,8 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ */
+/*
* Generic bounce buffer implementation
*/
diff --git a/src/commonlib/storage/mmc.c b/src/commonlib/storage/mmc.c
index 6346c432bae7..d82286505331 100644
--- a/src/commonlib/storage/mmc.c
+++ b/src/commonlib/storage/mmc.c
@@ -9,7 +9,8 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ */
+/*
* MultiMediaCard (MMC) and eMMC specific support code
* This code is controller independent
*/
diff --git a/src/commonlib/storage/sd.c b/src/commonlib/storage/sd.c
index 1b4bee0b475d..a925088afabd 100644
--- a/src/commonlib/storage/sd.c
+++ b/src/commonlib/storage/sd.c
@@ -9,7 +9,8 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ */
+/*
* Secure Digital (SD) card specific support code
* This code is controller independent
*/
diff --git a/src/commonlib/storage/sd_mmc.c b/src/commonlib/storage/sd_mmc.c
index c8df33595a48..8c0c1f7e1d1f 100644
--- a/src/commonlib/storage/sd_mmc.c
+++ b/src/commonlib/storage/sd_mmc.c
@@ -9,7 +9,8 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ */
+/*
* MultiMediaCard (MMC), eMMC and Secure Digital (SD) common initialization
* code which brings the card into the standby state. This code is controller
* independent.
diff --git a/src/commonlib/storage/sdhci.c b/src/commonlib/storage/sdhci.c
index 47286c54d200..231224c5566d 100644
--- a/src/commonlib/storage/sdhci.c
+++ b/src/commonlib/storage/sdhci.c
@@ -9,7 +9,8 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ */
+/*
* Secure Digital (SD) Host Controller interface specific code
*/
diff --git a/src/commonlib/storage/sdhci_adma.c b/src/commonlib/storage/sdhci_adma.c
index 843497116c16..285ac0f1ec1b 100644
--- a/src/commonlib/storage/sdhci_adma.c
+++ b/src/commonlib/storage/sdhci_adma.c
@@ -9,7 +9,8 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ */
+/*
* Secure Digital (SD) Host Controller interface DMA support code
*/
diff --git a/src/commonlib/storage/sdhci_display.c b/src/commonlib/storage/sdhci_display.c
index 4169f7ec9817..6dad33c36e9c 100644
--- a/src/commonlib/storage/sdhci_display.c
+++ b/src/commonlib/storage/sdhci_display.c
@@ -9,7 +9,8 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ */
+/*
* Secure Digital (SD) Host Controller interface specific code
*/
diff --git a/src/commonlib/storage/storage.c b/src/commonlib/storage/storage.c
index 8f5a72f248f8..050d8bfb6068 100644
--- a/src/commonlib/storage/storage.c
+++ b/src/commonlib/storage/storage.c
@@ -9,7 +9,8 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ */
+/*
* MultiMediaCard (MMC), eMMC and Secure Digital (SD) common code which
* transitions the card from the standby state to the transfer state. The
* common code supports read operations, erase and write operations are in
diff --git a/src/commonlib/storage/storage_erase.c b/src/commonlib/storage/storage_erase.c
index b01388077e4c..2425b765d6cf 100644
--- a/src/commonlib/storage/storage_erase.c
+++ b/src/commonlib/storage/storage_erase.c
@@ -9,7 +9,8 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ */
+/*
* MultiMediaCard (MMC), eMMC and Secure Digital (SD) erase support code.
* This code is controller independent.
*/
diff --git a/src/commonlib/storage/storage_write.c b/src/commonlib/storage/storage_write.c
index edf13fc0a371..f5af6dc66329 100644
--- a/src/commonlib/storage/storage_write.c
+++ b/src/commonlib/storage/storage_write.c
@@ -9,7 +9,8 @@
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ */
+/*
* MultiMediaCard (MMC), eMMC and Secure Digital (SD) write support code.
* This code is controller independent.
*/
diff --git a/src/ec/google/chromeec/ec_message.h b/src/ec/google/chromeec/ec_message.h
index be0b08ab0317..f0eab2f185e3 100644
--- a/src/ec/google/chromeec/ec_message.h
+++ b/src/ec/google/chromeec/ec_message.h
@@ -1,8 +1,7 @@
/*
* Chromium OS Matrix Keyboard Message Protocol definitions
- *
- * Copyright (c) 2012 The Chromium OS Authors.
- *
+ */
+/*
* 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 the Free Software Foundation; either version 2 of
diff --git a/src/ec/kontron/kempld/kempld_i2c.c b/src/ec/kontron/kempld/kempld_i2c.c
index ab41097782db..56283eacc4a3 100644
--- a/src/ec/kontron/kempld/kempld_i2c.c
+++ b/src/ec/kontron/kempld/kempld_i2c.c
@@ -1,15 +1,9 @@
/*
* I2C bus driver for Kontron COM modules
*
- * Copyright (C) 2017 secunet Security Networks AG
- *
- * Based on the similar driver in Linux:
- *
- * Copyright (c) 2010-2013 Kontron Europe GmbH
- * Author: Michael Brunner <michael.brunner@kontron.com>
- *
- * The driver is based on the i2c-ocores driver by Peter Korsgaard.
- *
+ * Based on the similar driver in Linux.
+ */
+/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License 2 as published
* by the Free Software Foundation.
diff --git a/src/include/b64_decode.h b/src/include/b64_decode.h
index 4d0970e1a575..0deb7aae31d4 100644
--- a/src/include/b64_decode.h
+++ b/src/include/b64_decode.h
@@ -1,6 +1,4 @@
/*
- * Copyright (C) 2015 Google, Inc.
- *
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
* may be copied, distributed, and modified under those terms.
diff --git a/src/include/device_tree.h b/src/include/device_tree.h
index 30da803b63c2..0de9dba21a8b 100644
--- a/src/include/device_tree.h
+++ b/src/include/device_tree.h
@@ -1,9 +1,5 @@
+/* Taken from depthcharge: src/base/device_tree.h */
/*
- * Copyright 2013 Google Inc.
- * Copyright 2018-present Facebook, Inc.
- *
- * Taken from depthcharge: src/base/device_tree.h
- *
* 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 the Free Software Foundation; either version 2 of
diff --git a/src/include/endian.h b/src/include/endian.h
index 0f32b7484a74..a1c7f6a89bc1 100644
--- a/src/include/endian.h
+++ b/src/include/endian.h
@@ -1,6 +1,4 @@
/*
- * Copyright (C) 2013 The Chromium OS 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 the Free Software Foundation; either version 2 of
diff --git a/src/include/fit.h b/src/include/fit.h
index 1c90aca1fff2..beec38ae6a85 100644
--- a/src/include/fit.h
+++ b/src/include/fit.h
@@ -1,9 +1,5 @@
+/* Taken from depthcharge: src/boot/fit.h */
/*
- * Copyright 2013 Google Inc.
- * Copyright 2018-present Facebook, Inc.
- *
- * Taken from depthcharge: src/boot/fit.h
- *
* 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 the Free Software Foundation; either version 2 of
diff --git a/src/include/fit_payload.h b/src/include/fit_payload.h
index dd6628985346..657c7d57f36f 100644
--- a/src/include/fit_payload.h
+++ b/src/include/fit_payload.h
@@ -1,9 +1,4 @@
/*
- * Copyright 2013 Google Inc.
- *
- * See file CREDITS for list of people who contributed to this
- * project.
- *
* 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 the Free Software Foundation; either version 2 of
diff --git a/src/include/list.h b/src/include/list.h
index 201a8d39a823..970608071317 100644
--- a/src/include/list.h
+++ b/src/include/list.h
@@ -1,9 +1,5 @@
+/* Taken from depthcharge: src/base/list.h */
/*
- * Copyright 2012 Google Inc.
- * Copyright 2018-present Facebook, Inc.
- *
- * Taken from depthcharge: src/base/list.h
- *
* 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 the Free Software Foundation; either version 2 of
diff --git a/src/include/memory_info.h b/src/include/memory_info.h
index ad3c1775f9ec..03b4fdc73882 100644
--- a/src/include/memory_info.h
+++ b/src/include/memory_info.h
@@ -1,8 +1,5 @@
+/* Memory information */
/*
- * Memory information
- *
- * Copyright (C) 2014, Intel Corporation. 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 version
* 2 as published by the Free Software Foundation.
diff --git a/src/include/spi-generic.h b/src/include/spi-generic.h
index 30228867fcf4..a57ec907d500 100644
--- a/src/include/spi-generic.h
+++ b/src/include/spi-generic.h
@@ -1,7 +1,4 @@
/*
- * (C) Copyright 2001
- * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com.
- *
* 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 the Free Software Foundation; either version 2 of
diff --git a/src/include/spi_flash.h b/src/include/spi_flash.h
index c74ceaeed4d5..5dce7206ab9a 100644
--- a/src/include/spi_flash.h
+++ b/src/include/spi_flash.h
@@ -1,8 +1,5 @@
+/* Interface to SPI flash */
/*
- * Interface to SPI flash
- *
- * Copyright (C) 2008 Atmel Corporation
- *
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
diff --git a/src/lib/b64_decode.c b/src/lib/b64_decode.c
index 9efa465c257b..57c883870ee2 100644
--- a/src/lib/b64_decode.c
+++ b/src/lib/b64_decode.c
@@ -1,6 +1,4 @@
/*
- * Copyright (C) 2015 Google, Inc.
- *
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
* may be copied, distributed, and modified under those terms.
diff --git a/src/lib/device_tree.c b/src/lib/device_tree.c
index b8faab53b8d3..2124edd582a6 100644
--- a/src/lib/device_tree.c
+++ b/src/lib/device_tree.c
@@ -1,9 +1,5 @@
+/* Taken from depthcharge: src/base/device_tree.c */
/*
- * Copyright 2013 Google Inc.
- * Copyright 2018-present Facebook, Inc.
- *
- * Taken from depthcharge: src/base/device_tree.c
- *
* 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 the Free Software Foundation; either version 2 of
diff --git a/src/lib/fit.c b/src/lib/fit.c
index edac1927e79b..be6c87a936ce 100644
--- a/src/lib/fit.c
+++ b/src/lib/fit.c
@@ -1,9 +1,5 @@
+/* Taken from depthcharge: src/boot/fit.c */
/*
- * Copyright 2013 Google Inc.
- * Copyright 2018-present Facebook, Inc.
- *
- * Taken from depthcharge: src/boot/fit.c
- *
* 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 the Free Software Foundation; either version 2 of
diff --git a/src/lib/hexdump.c b/src/lib/hexdump.c
index 8ecba6d51232..95f3b93f91fb 100644
--- a/src/lib/hexdump.c
+++ b/src/lib/hexdump.c
@@ -1,6 +1,4 @@
/*
- * 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 the Free Software Foundation; either version 2 of
diff --git a/src/lib/list.c b/src/lib/list.c
index 06d422d30eb5..9138ab30cd97 100644
--- a/src/lib/list.c
+++ b/src/lib/list.c
@@ -1,9 +1,5 @@
+/* Taken from depthcharge: src/base/list.c */
/*
- * Copyright 2012 Google Inc.
- * Copyright 2018-present Facebook, Inc.
- *
- * Taken from depthcharge: src/base/list.c
- *
* 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 the Free Software Foundation; either version 2 of
diff --git a/src/mainboard/emulation/qemu-i440fx/dsdt.asl b/src/mainboard/emulation/qemu-i440fx/dsdt.asl
index ad9243b9cbcd..c4ca0b301302 100644
--- a/src/mainboard/emulation/qemu-i440fx/dsdt.asl
+++ b/src/mainboard/emulation/qemu-i440fx/dsdt.asl
@@ -1,8 +1,5 @@
+/* Bochs/QEMU ACPI DSDT ASL definition */
/*
- * Bochs/QEMU ACPI DSDT ASL definition
- *
- * Copyright (c) 2006 Fabrice Bellard
- *
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2 as published by the Free Software Foundation.
diff --git a/src/mainboard/emulation/qemu-q35/dsdt.asl b/src/mainboard/emulation/qemu-q35/dsdt.asl
index 5e4769da5626..31a26603c287 100644
--- a/src/mainboard/emulation/qemu-q35/dsdt.asl
+++ b/src/mainboard/emulation/qemu-q35/dsdt.asl
@@ -1,10 +1,5 @@
+/* Bochs/QEMU ACPI DSDT ASL definition */
/*
- * Bochs/QEMU ACPI DSDT ASL definition
- *
- * Copyright (c) 2006 Fabrice Bellard
- * Copyright (c) 2010 Isaku Yamahata
- * yamahata at valinux co jp
- *
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2 as published by the Free Software Foundation.
diff --git a/src/mainboard/intel/galileo/vboot.c b/src/mainboard/intel/galileo/vboot.c
index 3ec5bb3b4498..b0f8ae207b0a 100644
--- a/src/mainboard/intel/galileo/vboot.c
+++ b/src/mainboard/intel/galileo/vboot.c
@@ -1,6 +1,4 @@
/*
- * Copyright (C) 2016-2017 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 the Free Software Foundation; either version 2 of
diff --git a/src/mainboard/intel/galileo/vboot.fmd b/src/mainboard/intel/galileo/vboot.fmd
index 4d349bdf191f..3a64387636a5 100644
--- a/src/mainboard/intel/galileo/vboot.fmd
+++ b/src/mainboard/intel/galileo/vboot.fmd
@@ -1,6 +1,4 @@
#
-# Copyright (C) 2016-2017 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 the Free Software Foundation; either version 2 of
diff --git a/src/mainboard/ti/beaglebone/leds.c b/src/mainboard/ti/beaglebone/leds.c
index dd1471d06b4b..abad71867afe 100644
--- a/src/mainboard/ti/beaglebone/leds.c
+++ b/src/mainboard/ti/beaglebone/leds.c
@@ -1,6 +1,4 @@
/*
- * 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 the Free Software Foundation; either version 2 of
diff --git a/src/mainboard/ti/beaglebone/leds.h b/src/mainboard/ti/beaglebone/leds.h
index a4a6001f4008..6a2d3ecb7687 100644
--- a/src/mainboard/ti/beaglebone/leds.h
+++ b/src/mainboard/ti/beaglebone/leds.h
@@ -1,6 +1,4 @@
/*
- * 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 the Free Software Foundation; either version 2 of
diff --git a/src/soc/nvidia/tegra210/include/soc/mipi_display.h b/src/soc/nvidia/tegra210/include/soc/mipi_display.h
index 96a6e42bab9d..38e4f9d186c1 100644
--- a/src/soc/nvidia/tegra210/include/soc/mipi_display.h
+++ b/src/soc/nvidia/tegra210/include/soc/mipi_display.h
@@ -5,10 +5,6 @@
* Display Working Group standards: DSI, DCS, DBI, DPI
*
* Author: Imre Deak <imre.deak@nokia.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
*/
#ifndef MIPI_DISPLAY_H
#define MIPI_DISPLAY_H
diff --git a/src/soc/nvidia/tegra210/include/soc/mipi_dsi.h b/src/soc/nvidia/tegra210/include/soc/mipi_dsi.h
index 55fe5d9c4044..1c86c8da28b3 100644
--- a/src/soc/nvidia/tegra210/include/soc/mipi_dsi.h
+++ b/src/soc/nvidia/tegra210/include/soc/mipi_dsi.h
@@ -4,10 +4,6 @@
* MIPI DSI Bus
*
* Andrzej Hajda <a.hajda@samsung.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
*/
#ifndef __MIPI_DSI_H__
diff --git a/src/soc/qualcomm/qcs405/clock.c b/src/soc/qualcomm/qcs405/clock.c
index e2e03c3e3280..cbc16a9614fa 100644
--- a/src/soc/qualcomm/qcs405/clock.c
+++ b/src/soc/qualcomm/qcs405/clock.c
@@ -1,6 +1,5 @@
- /* This file is part of the coreboot project.
- *
- *
+ /* This file is part of the coreboot project. */
+ /*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
diff --git a/src/soc/qualcomm/qcs405/include/soc/clock.h b/src/soc/qualcomm/qcs405/include/soc/clock.h
index c021c49fa183..1778214d47fb 100644
--- a/src/soc/qualcomm/qcs405/include/soc/clock.h
+++ b/src/soc/qualcomm/qcs405/include/soc/clock.h
@@ -1,6 +1,5 @@
- /* This file is part of the coreboot project.
- *
- *
+ /* This file is part of the coreboot project. */
+ /*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
diff --git a/src/soc/qualcomm/sc7180/include/soc/qcom_qup_se.h b/src/soc/qualcomm/sc7180/include/soc/qcom_qup_se.h
index 307ea6ab546c..221e44af3371 100644
--- a/src/soc/qualcomm/sc7180/include/soc/qcom_qup_se.h
+++ b/src/soc/qualcomm/sc7180/include/soc/qcom_qup_se.h
@@ -1,7 +1,5 @@
/* This file is part of the coreboot project. */
/*
- * Copyright (c) 2018-2019 Qualcomm Technologies
- *
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
diff --git a/src/soc/qualcomm/sc7180/include/soc/qupv3_config.h b/src/soc/qualcomm/sc7180/include/soc/qupv3_config.h
index b2a89a53c092..941f6565c320 100644
--- a/src/soc/qualcomm/sc7180/include/soc/qupv3_config.h
+++ b/src/soc/qualcomm/sc7180/include/soc/qupv3_config.h
@@ -1,8 +1,5 @@
+/* This file is part of the coreboot project. */
/*
- * This file is part of the coreboot project.
- *
- * Copyright (C) 2019, The Linux Foundation. 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 version 2 and
* only version 2 as published by the Free Software Foundation.
diff --git a/src/soc/qualcomm/sc7180/include/soc/qupv3_i2c.h b/src/soc/qualcomm/sc7180/include/soc/qupv3_i2c.h
index e69f461ff9bd..3eaf0ce1903a 100644
--- a/src/soc/qualcomm/sc7180/include/soc/qupv3_i2c.h
+++ b/src/soc/qualcomm/sc7180/include/soc/qupv3_i2c.h
@@ -1,8 +1,5 @@
+/* This file is part of the depthcharge project. */
/*
- * This file is part of the depthcharge project.
- *
- * Copyright (C) 2018-2019, The Linux Foundation. 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 version 2 and
* only version 2 as published by the Free Software Foundation.
diff --git a/src/soc/qualcomm/sc7180/include/soc/qupv3_spi.h b/src/soc/qualcomm/sc7180/include/soc/qupv3_spi.h
index a147070fe0ab..172d937bd1c3 100644
--- a/src/soc/qualcomm/sc7180/include/soc/qupv3_spi.h
+++ b/src/soc/qualcomm/sc7180/include/soc/qupv3_spi.h
@@ -1,7 +1,5 @@
/* This file is part of the coreboot project. */
/*
- * Copyright (c) 2018-2019 Qualcomm Technologies
- *
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
diff --git a/src/soc/qualcomm/sc7180/qcom_qup_se.c b/src/soc/qualcomm/sc7180/qcom_qup_se.c
index e0a7d4ca7ba0..58a1b36606ab 100644
--- a/src/soc/qualcomm/sc7180/qcom_qup_se.c
+++ b/src/soc/qualcomm/sc7180/qcom_qup_se.c
@@ -1,7 +1,5 @@
/* This file is part of the coreboot project. */
/*
- * Copyright (c) 2018-2019 Qualcomm Technologies
- *
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
diff --git a/src/soc/qualcomm/sc7180/qupv3_config.c b/src/soc/qualcomm/sc7180/qupv3_config.c
index 14df187886cc..15b6b4dbe9e1 100644
--- a/src/soc/qualcomm/sc7180/qupv3_config.c
+++ b/src/soc/qualcomm/sc7180/qupv3_config.c
@@ -1,8 +1,5 @@
+/* This file is part of the coreboot project. */
/*
- * This file is part of the coreboot project.
- *
- * Copyright (C) 2020, The Linux Foundation. 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 version 2 and
* only version 2 as published by the Free Software Foundation.
diff --git a/src/soc/qualcomm/sc7180/qupv3_i2c.c b/src/soc/qualcomm/sc7180/qupv3_i2c.c
index b8938e2315f4..02f92b4aa067 100644
--- a/src/soc/qualcomm/sc7180/qupv3_i2c.c
+++ b/src/soc/qualcomm/sc7180/qupv3_i2c.c
@@ -1,8 +1,5 @@
+/* This file is part of the depthcharge project. */
/*
- * This file is part of the depthcharge project.
- *
- * Copyright (C) 2018-2020, The Linux Foundation. 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 version 2 and
* only version 2 as published by the Free Software Foundation.
diff --git a/src/soc/qualcomm/sc7180/qupv3_spi.c b/src/soc/qualcomm/sc7180/qupv3_spi.c
index 756d6efb8236..4d26a2933bcf 100644
--- a/src/soc/qualcomm/sc7180/qupv3_spi.c
+++ b/src/soc/qualcomm/sc7180/qupv3_spi.c
@@ -1,7 +1,5 @@
/* This file is part of the coreboot project. */
/*
- * Copyright (C) 2018-2020, The Linux Foundation. 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 version 2 and
* only version 2 as published by the Free Software Foundation.
diff --git a/src/soc/qualcomm/sc7180/qupv3_uart.c b/src/soc/qualcomm/sc7180/qupv3_uart.c
index ac3032f49171..916d4aa4d427 100644
--- a/src/soc/qualcomm/sc7180/qupv3_uart.c
+++ b/src/soc/qualcomm/sc7180/qupv3_uart.c
@@ -1,7 +1,5 @@
/* This file is part of the coreboot project. */
/*
- * Copyright (c) 2018-2020, The Linux Foundation. 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 version 2 and
* only version 2 as published by the Free Software Foundation.
diff --git a/src/soc/samsung/exynos5420/dmc_init_ddr3.c b/src/soc/samsung/exynos5420/dmc_init_ddr3.c
index 8ba1eab9e582..90ad93298a6c 100644
--- a/src/soc/samsung/exynos5420/dmc_init_ddr3.c
+++ b/src/soc/samsung/exynos5420/dmc_init_ddr3.c
@@ -1,7 +1,6 @@
/* This file is part of the coreboot project. */
+/* DDR3 mem setup file for EXYNOS5 based board */
/*
- * DDR3 mem setup file for EXYNOS5 based board
- *
*
* 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/soc/samsung/exynos5420/dp.c b/src/soc/samsung/exynos5420/dp.c
index f1d374e1a348..101630dab40e 100644
--- a/src/soc/samsung/exynos5420/dp.c
+++ b/src/soc/samsung/exynos5420/dp.c
@@ -1,7 +1,5 @@
/*
*
- * Author: Donghwa Lee <dh09.lee@samsung.com>
- *
* 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 the Free Software Foundation; either version 2 of
diff --git a/src/soc/samsung/exynos5420/dp_lowlevel.c b/src/soc/samsung/exynos5420/dp_lowlevel.c
index 33140e2c338f..6bb73512ab14 100644
--- a/src/soc/samsung/exynos5420/dp_lowlevel.c
+++ b/src/soc/samsung/exynos5420/dp_lowlevel.c
@@ -1,7 +1,5 @@
/*
*
- * Author: Donghwa Lee <dh09.lee@samsung.com>
- *
* 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 the Free Software Foundation; either version 2 of
diff --git a/src/soc/samsung/exynos5420/fimd.c b/src/soc/samsung/exynos5420/fimd.c
index 66745037feb5..20480f425167 100644
--- a/src/soc/samsung/exynos5420/fimd.c
+++ b/src/soc/samsung/exynos5420/fimd.c
@@ -1,8 +1,5 @@
/*
*
- * Author: InKi Dae <inki.dae@samsung.com>
- * Author: Donghwa Lee <dh09.lee@samsung.com>
- *
* 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 the Free Software Foundation; either version 2 of
diff --git a/src/southbridge/intel/common/spi.h b/src/southbridge/intel/common/spi.h
index 3b8410cd9f19..3c997f8e604e 100644
--- a/src/southbridge/intel/common/spi.h
+++ b/src/southbridge/intel/common/spi.h
@@ -1,7 +1,6 @@
-/*
- * This file is part of the coreboot project.
+/* This file is part of the coreboot project. */
- * This program is free software; you can redistribute it and/or
+/* 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 the Free Software Foundation; version 2 of
* the License.