openocd: fix SPDX tag format for files .c
[fw/openocd] / src / flash / nor / jtagspi.c
index 9d377ce704a373b2ae6ecfd6a2d571366eee02c8..c176ca810641c6b39046955788b35bd7808532b0 100644 (file)
@@ -1,18 +1,7 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+
 /***************************************************************************
  *   Copyright (C) 2015 Robert Jordens <jordens@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
@@ -471,7 +460,7 @@ static int jtagspi_read_status(struct flash_bank *bank, uint32_t *status)
        int err = jtagspi_cmd(bank, SPIFLASH_READ_STATUS, NULL, 0, &buf, -1);
        if (err == ERROR_OK) {
                *status = buf;
-               LOG_DEBUG("status=0x%02" PRIx8, *status);
+               LOG_DEBUG("status=0x%02" PRIx32, *status);
        }
        return err;
 }
@@ -510,7 +499,7 @@ static int jtagspi_write_enable(struct flash_bank *bank)
                return retval;
 
        if ((status & SPIFLASH_WE_BIT) == 0) {
-               LOG_ERROR("Cannot enable write to flash. Status=0x%02" PRIx8, status);
+               LOG_ERROR("Cannot enable write to flash. Status=0x%02" PRIx32, status);
                return ERROR_FAIL;
        }
        return ERROR_OK;