Message ID | 1418241608-13966-4-git-send-email-drjones@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/lib/arm/setup.c b/lib/arm/setup.c index 5fa37ca35f383..50ca4cb9ff99e 100644 --- a/lib/arm/setup.c +++ b/lib/arm/setup.c @@ -22,7 +22,7 @@ extern unsigned long stacktop; extern void io_init(void); extern void setup_args(const char *args); -u32 cpus[NR_CPUS] = { [0 ... NR_CPUS-1] = (~0UL) }; +u32 cpus[NR_CPUS] = { [0 ... NR_CPUS-1] = (~0U) }; int nr_cpus; phys_addr_t __phys_offset, __phys_end;
Correct a type mismatch in the cpus initialization. Signed-off-by: Andrew Jones <drjones@redhat.com> --- lib/arm/setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)