openocd: fix SPDX tag format for files .c
[fw/openocd] / src / jtag / drivers / versaloon / usbtoxxx / usbtopwr.c
index 78f74a0a903078c17fa998c00001d71b05e5f86a..941680a44af62d050fdd11d61d2fc11517faae0e 100644 (file)
@@ -1,20 +1,7 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+
 /***************************************************************************
  *   Copyright (C) 2009 - 2010 by Simon Qian <SimonQian@SimonQian.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, write to the                         *
- *   Free Software Foundation, Inc.,                                       *
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
  ***************************************************************************/
 
 #ifdef HAVE_CONFIG_H
@@ -51,7 +38,7 @@ RESULT usbtopwr_config(uint8_t interface_index)
        return usbtoxxx_conf_command(USB_TO_POWER, interface_index, NULL, 0);
 }
 
-RESULT usbtopwr_output(uint8_t interface_index, uint16_t mV)
+RESULT usbtopwr_output(uint8_t interface_index, uint16_t millivolt)
 {
 #if PARAM_CHECK
        if (interface_index > 7) {
@@ -60,6 +47,6 @@ RESULT usbtopwr_output(uint8_t interface_index, uint16_t mV)
        }
 #endif
 
-       return usbtoxxx_out_command(USB_TO_POWER, interface_index, (uint8_t *)&mV,
+       return usbtoxxx_out_command(USB_TO_POWER, interface_index, (uint8_t *)&millivolt,
                2, 0);
 }