openocd: fix SPDX tag format for files .c
[fw/openocd] / src / flash / nor / efm32.c
index 2c5a5020ee6aa6084c1dc657e4ccefebf3b7e130..3a49afc9c3b76c5443497c3e48b6b4555f3de80e 100644 (file)
@@ -1,3 +1,5 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+
 /***************************************************************************
  *   Copyright (C) 2005 by Dominic Rath                                    *
  *   Dominic.Rath@gmx.de                                                   *
  *                                                                         *
  *   Copyright (C) 2021 Doug Brunner                                       *
  *   doug.a.brunner@gmail.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 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 <http://www.gnu.org/licenses/>. *
  ***************************************************************************/
 
 #ifdef HAVE_CONFIG_H
@@ -1086,8 +1075,8 @@ static int efm32x_probe(struct flash_bank *bank)
 
        LOG_INFO("detected part: %s Gecko, rev %d",
                        efm32_mcu_info->family_data->name, efm32_mcu_info->prod_rev);
-       LOG_INFO("flash size = %dkbytes", efm32_mcu_info->flash_sz_kib);
-       LOG_INFO("flash page size = %dbytes", efm32_mcu_info->page_size);
+       LOG_INFO("flash size = %d KiB", efm32_mcu_info->flash_sz_kib);
+       LOG_INFO("flash page size = %d B", efm32_mcu_info->page_size);
 
        assert(efm32_mcu_info->page_size != 0);