From 9cd714cd145a73a4f43bdfc37554f4d5ab05f92b Mon Sep 17 00:00:00 2001 From: Erhan Kurubas Date: Tue, 2 Aug 2022 01:15:12 +0200 Subject: [PATCH] target/espressif: remove author lines from esp32xx and xtensa files Some files have author info some doesn't. For the consistency we removed all. Signed-off-by: Erhan Kurubas Change-Id: Ie6f1ec012302e3a954c75c5106f12820722cb715 Reviewed-on: https://review.openocd.org/c/openocd/+/7104 Tested-by: jenkins Reviewed-by: Antonio Borneo --- src/jtag/drivers/esp_usb_jtag.c | 16 ++-------------- src/target/espressif/esp32.c | 2 -- src/target/espressif/esp32s2.c | 1 - src/target/espressif/esp32s2.h | 1 - src/target/espressif/esp_xtensa.c | 1 - src/target/espressif/esp_xtensa.h | 1 - src/target/espressif/esp_xtensa_smp.c | 1 - src/target/xtensa/xtensa.c | 3 --- src/target/xtensa/xtensa.h | 1 - src/target/xtensa/xtensa_debug_module.h | 5 +---- src/target/xtensa/xtensa_regs.h | 2 +- 11 files changed, 4 insertions(+), 30 deletions(-) diff --git a/src/jtag/drivers/esp_usb_jtag.c b/src/jtag/drivers/esp_usb_jtag.c index a73984a3a1..d280c6ad87 100644 --- a/src/jtag/drivers/esp_usb_jtag.c +++ b/src/jtag/drivers/esp_usb_jtag.c @@ -1,20 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + /*************************************************************************** * Espressif USB to Jtag adapter * * Copyright (C) 2020 Espressif Systems (Shanghai) Co. Ltd. * - * Author: Jeroen Domburg * - * * - * 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 the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * 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. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program. If not, see . * ***************************************************************************/ #ifdef HAVE_CONFIG_H diff --git a/src/target/espressif/esp32.c b/src/target/espressif/esp32.c index 29d94a272b..de8f1aacf7 100644 --- a/src/target/espressif/esp32.c +++ b/src/target/espressif/esp32.c @@ -3,8 +3,6 @@ /*************************************************************************** * ESP32 target API for OpenOCD * * Copyright (C) 2016-2019 Espressif Systems Ltd. * - * Author: Dmitry Yakovlev * - * Author: Alexey Gerenkov * ***************************************************************************/ #ifdef HAVE_CONFIG_H diff --git a/src/target/espressif/esp32s2.c b/src/target/espressif/esp32s2.c index 4251e84c98..bbf7ff5afa 100644 --- a/src/target/espressif/esp32s2.c +++ b/src/target/espressif/esp32s2.c @@ -3,7 +3,6 @@ /*************************************************************************** * ESP32-S2 target for OpenOCD * * Copyright (C) 2019 Espressif Systems Ltd. * - * Author: Alexey Gerenkov * ***************************************************************************/ #ifdef HAVE_CONFIG_H diff --git a/src/target/espressif/esp32s2.h b/src/target/espressif/esp32s2.h index adaabbf852..26fc7a198c 100644 --- a/src/target/espressif/esp32s2.h +++ b/src/target/espressif/esp32s2.h @@ -3,7 +3,6 @@ /*************************************************************************** * ESP32-S2 target for OpenOCD * * Copyright (C) 2019 Espressif Systems Ltd. * - * Author: Alexey Gerenkov * ***************************************************************************/ #ifndef OPENOCD_TARGET_ESP32S2_H diff --git a/src/target/espressif/esp_xtensa.c b/src/target/espressif/esp_xtensa.c index cc2888b0de..ce1601289c 100644 --- a/src/target/espressif/esp_xtensa.c +++ b/src/target/espressif/esp_xtensa.c @@ -3,7 +3,6 @@ /*************************************************************************** * Espressif Xtensa target API for OpenOCD * * Copyright (C) 2019 Espressif Systems Ltd. * - * Author: Alexey Gerenkov * ***************************************************************************/ #ifdef HAVE_CONFIG_H diff --git a/src/target/espressif/esp_xtensa.h b/src/target/espressif/esp_xtensa.h index e3507e31e0..4bbbd756ca 100644 --- a/src/target/espressif/esp_xtensa.h +++ b/src/target/espressif/esp_xtensa.h @@ -3,7 +3,6 @@ /*************************************************************************** * Generic ESP xtensa target implementation for OpenOCD * * Copyright (C) 2019 Espressif Systems Ltd. * - * Author: Alexey Gerenkov * ***************************************************************************/ #ifndef OPENOCD_TARGET_ESP_XTENSA_H diff --git a/src/target/espressif/esp_xtensa_smp.c b/src/target/espressif/esp_xtensa_smp.c index 7c2c72331a..6060662475 100644 --- a/src/target/espressif/esp_xtensa_smp.c +++ b/src/target/espressif/esp_xtensa_smp.c @@ -3,7 +3,6 @@ /*************************************************************************** * ESP Xtensa SMP target API for OpenOCD * * Copyright (C) 2020 Espressif Systems Ltd. Co * - * Author: Alexey Gerenkov * ***************************************************************************/ #ifdef HAVE_CONFIG_H diff --git a/src/target/xtensa/xtensa.c b/src/target/xtensa/xtensa.c index f04132e68c..6f9d77e6cc 100644 --- a/src/target/xtensa/xtensa.c +++ b/src/target/xtensa/xtensa.c @@ -5,9 +5,6 @@ * Copyright (C) 2016-2019 Espressif Systems Ltd. * * Derived from esp108.c * * Author: Angus Gratton gus@projectgus.com * - * Author: Jeroen Domburg * - * Author: Alexey Gerenkov * - * Author: Andrey Gramakov * ***************************************************************************/ #ifdef HAVE_CONFIG_H diff --git a/src/target/xtensa/xtensa.h b/src/target/xtensa/xtensa.h index 86b6a9c9b3..d6000d80e7 100644 --- a/src/target/xtensa/xtensa.h +++ b/src/target/xtensa/xtensa.h @@ -3,7 +3,6 @@ /*************************************************************************** * Generic Xtensa target * * Copyright (C) 2019 Espressif Systems Ltd. * - * Author: Alexey Gerenkov * ***************************************************************************/ #ifndef OPENOCD_TARGET_XTENSA_H diff --git a/src/target/xtensa/xtensa_debug_module.h b/src/target/xtensa/xtensa_debug_module.h index 88f9eb2a7b..189a6c97a8 100644 --- a/src/target/xtensa/xtensa_debug_module.h +++ b/src/target/xtensa/xtensa_debug_module.h @@ -3,11 +3,8 @@ /*************************************************************************** * Xtensa debug module API * * Copyright (C) 2019 Espressif Systems Ltd. * - * * - * * * Derived from original ESP8266 target. * - * Copyright (C) 2015 by Angus Gratton * - * gus@projectgus.com * + * Author: Angus Gratton gus@projectgus.com * ***************************************************************************/ #ifndef OPENOCD_TARGET_XTENSA_DEBUG_MODULE_H diff --git a/src/target/xtensa/xtensa_regs.h b/src/target/xtensa/xtensa_regs.h index 632400abf9..7009a2a5fc 100644 --- a/src/target/xtensa/xtensa_regs.h +++ b/src/target/xtensa/xtensa_regs.h @@ -4,8 +4,8 @@ * Generic Xtensa target API for OpenOCD * * Copyright (C) 2016-2019 Espressif Systems Ltd. * * Author: Angus Gratton gus@projectgus.com * - * Author: Jeroen Domburg * ***************************************************************************/ + #ifndef OPENOCD_TARGET_XTENSA_REGS_H #define OPENOCD_TARGET_XTENSA_REGS_H -- 2.30.2