ARM: make struct machine_desc definition coherent with its comment

As mentioned in the comment right at the top, the first four fields
are directly accessed by assembly code in head.S. Move nr_irqs so the
comment is true again.

Signed-off-by: Nicolas Pitre <nicolas.pitre@linaro.org>

authored by Nicolas Pitre and committed by Nicolas Pitre d71e3eb5 809b4e00

+2 -1
+2 -1
arch/arm/include/asm/mach/arch.h
··· 20 20 * by assembler code in head.S, head-common.S 21 21 */ 22 22 unsigned int nr; /* architecture number */ 23 - unsigned int nr_irqs; /* number of IRQs */ 24 23 unsigned int phys_io; /* start of physical io */ 25 24 unsigned int io_pg_offst; /* byte offset for io 26 25 * page tabe entry */ 27 26 28 27 const char *name; /* architecture name */ 29 28 unsigned long boot_params; /* tagged list */ 29 + 30 + unsigned int nr_irqs; /* number of IRQs */ 30 31 31 32 unsigned int video_start; /* start of video RAM */ 32 33 unsigned int video_end; /* end of video RAM */