]> git.sur5r.net Git - u-boot/blobdiff - include/common.h
common: Fix cpu nr type which is always unsigned type
[u-boot] / include / common.h
index 60c79137e212c0eb6f22a7f6ef4305d6b8583275..940161f1758b77cfa31984ed3b65bd28b208b47d 100644 (file)
@@ -536,10 +536,10 @@ void show_activity(int arg);
 
 /* Multicore arch functions */
 #ifdef CONFIG_MP
-int cpu_status(int nr);
-int cpu_reset(int nr);
-int cpu_disable(int nr);
-int cpu_release(int nr, int argc, char * const argv[]);
+int cpu_status(u32 nr);
+int cpu_reset(u32 nr);
+int cpu_disable(u32 nr);
+int cpu_release(u32 nr, int argc, char * const argv[]);
 #endif
 
 #else  /* __ASSEMBLY__ */