]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/esd/ocrtc/cmd_ocrtc.c
patman: Use the full commit hash for 'git checkout'
[karo-tx-uboot.git] / board / esd / ocrtc / cmd_ocrtc.c
index f83dfe870bc969ad7ff934ffa7b9168383a5ec0f..6dcbd8b24c2ed1bfb11aabd8f6c5890ef416ac74 100644 (file)
@@ -2,23 +2,7 @@
  * (C) Copyright 2003
  * Stefan Roese, esd gmbh germany, stefan.roese@esd-electronics.com
  *
- * See file CREDITS for list of people who contributed to this
- * project.
- *
- * 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
+ * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <common.h>
@@ -33,7 +17,7 @@
 /*
  * Set device number on pci board
  */
-int do_setdevice(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
+int do_setdevice(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
 {
        int idx = 1;      /* start at 1 (skip device 0) */
        pci_dev_t bdf = 0;
@@ -54,15 +38,15 @@ int do_setdevice(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
 }
 U_BOOT_CMD(
        setdevice,      1,      1,      do_setdevice,
-       "setdevice - Set device number on pci adapter boards\n",
-       NULL
+       "Set device number on pci adapter boards",
+       ""
 );
 
 
 /*
  * Get device number on pci board
  */
-int do_getdevice(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
+int do_getdevice(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
 {
        u32 device;
        char str[32];
@@ -77,8 +61,8 @@ int do_getdevice(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
 }
 U_BOOT_CMD(
        getdevice,      1,      1,      do_getdevice,
-       "getdevice - Get device number and set slot env variable\n",
-       NULL
+       "Get device number and set slot env variable",
+       ""
 );
 
 #endif