x86/idt: Remove superfluous ALIGNment

Commit 87e81786b13b ("x86/idt: Move early IDT setup out of 32-bit asm")
switched early_ignore_irq to use ENTRY. ENTRY aligns the code, so there
is no need for one more ALIGN right before the function.

And add one \n after the function to separate it from the data.

Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Link: http://lkml.kernel.org/r/20170831121653.28917-1-jslaby@suse.cz

authored by

Jiri Slaby and committed by
Thomas Gleixner
04b5de3a 594a30fb

+1 -1
+1 -1
arch/x86/kernel/head_32.S
··· 465 ENDPROC(early_idt_handler_common) 466 467 /* This is the default interrupt "handler" :-) */ 468 - ALIGN 469 ENTRY(early_ignore_irq) 470 cld 471 #ifdef CONFIG_PRINTK ··· 501 hlt 502 jmp hlt_loop 503 ENDPROC(early_ignore_irq) 504 __INITDATA 505 .align 4 506 GLOBAL(early_recursion_flag)
··· 465 ENDPROC(early_idt_handler_common) 466 467 /* This is the default interrupt "handler" :-) */ 468 ENTRY(early_ignore_irq) 469 cld 470 #ifdef CONFIG_PRINTK ··· 502 hlt 503 jmp hlt_loop 504 ENDPROC(early_ignore_irq) 505 + 506 __INITDATA 507 .align 4 508 GLOBAL(early_recursion_flag)