openocd: fix SPDX tag format for files .c
[fw/openocd] / src / rtos / embKernel.c
index 1987fd59c65c3e032d6a4ffb43fbb3177917df0a..c1b5723fcee1e500abe0578f49abf604688faffb 100644 (file)
@@ -1,19 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+
 /***************************************************************************
  *   Copyright (C) 2011 by Broadcom Corporation                            *
  *   Evan Hunter - ehunter@broadcom.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
@@ -110,7 +99,7 @@ static const struct embkernel_params embkernel_params_list[] = {
 
 static bool embkernel_detect_rtos(struct target *target)
 {
-       if (target->rtos->symbols != NULL) {
+       if (target->rtos->symbols) {
                if (target->rtos->symbols[SYMBOL_ID_S_CURRENT_TASK].address != 0)
                        return true;
        }
@@ -121,7 +110,7 @@ static int embkernel_create(struct target *target)
 {
        size_t i = 0;
        while ((i < ARRAY_SIZE(embkernel_params_list)) &&
-                       (0 != strcmp(embkernel_params_list[i].target_name, target->type->name)))
+                       (strcmp(embkernel_params_list[i].target_name, target->type->name) != 0))
                i++;
 
        if (i >= ARRAY_SIZE(embkernel_params_list)) {