openocd: fix SPDX tag format for files .c
[fw/openocd] / src / helper / util.c
index 55b92a7558996f7e92b5c0298c9c5a9ecbbb951a..bf18f8e6035f60a0c716a729f3a2e296c1b40e9e 100644 (file)
@@ -1,20 +1,7 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+
 /***************************************************************************
  *   Copyright (C) 2010 by Ã˜yvind Harboe                                   *
- *                                                                         *
- *   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, write to the                         *
- *   Free Software Foundation, Inc.,                                       *
- *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.           *
  ***************************************************************************/
 
 /* this file contains various functionality useful to standalone systems */
@@ -26,7 +13,7 @@
 #include "log.h"
 #include "time_support.h"
 
-static int util_Jim_Command_ms(Jim_Interp *interp,
+static int jim_util_ms(Jim_Interp *interp,
        int argc,
        Jim_Obj * const *argv)
 {
@@ -47,9 +34,9 @@ static const struct command_registration util_command_handlers[] = {
        {
                .name = "ms",
                .mode = COMMAND_ANY,
-               .jim_handler = util_Jim_Command_ms,
+               .jim_handler = jim_util_ms,
                .help =
-                       "Returns ever increasing milliseconds. Used to calculuate differences in time.",
+                       "Returns ever increasing milliseconds. Used to calculate differences in time.",
                .usage = "",
        },
        COMMAND_REGISTRATION_DONE