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