command: Remove the cmd_tbl_t typedef
[oweals/u-boot.git] / arch / arm / lib / cmd_boot.c
index 781a6eaf52dfa942c937924a914497f330fc5f6a..c905ecc4bd943f0cc164009eba09ab9c4332d444 100644 (file)
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * (C) Copyright 2008-2011
  * Graeme Russ, <graeme.russ@gmail.com>
@@ -14,8 +15,6 @@
  *
  * Copyright 2015 ATS Advanced Telematics Systems GmbH
  * Copyright 2015 Konsulko Group, Matt Porter <mporter@konsulko.com>
- *
- * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <common.h>
@@ -33,7 +32,7 @@
  *    instructions, otherwise a fault occurs."
  */
 unsigned long do_go_exec(ulong (*entry)(int, char * const []),
-                        int argc, char * const argv[])
+                        int argc, char *const argv[])
 {
        ulong addr = (ulong)entry | 1;
        entry = (void *)addr;