diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-11-12 13:27:35 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-11-12 13:27:35 -0500 |
commit | 8665596ec05498525014436520b316ba174a068a (patch) | |
tree | 84b60a30d94e91f5a0f30160bdea6b68dcb86492 /arch/x86/kernel/entry_32.S | |
parent | 939b787130bf22887a09d8fd2641a094dcef8c22 (diff) |
x86: fix up the new IRQ code for older versions of gas
Older versions of gas don't implement the C-style != operator, they
instead want the Pascal-style <> operator. Change != to <> so we
don't break compilation with those old versions of gas.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/kernel/entry_32.S')
-rw-r--r-- | arch/x86/kernel/entry_32.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/entry_32.S b/arch/x86/kernel/entry_32.S index dae81b9fd451..bd02ec77edc4 100644 --- a/arch/x86/kernel/entry_32.S +++ b/arch/x86/kernel/entry_32.S | |||
@@ -635,12 +635,12 @@ vector=FIRST_EXTERNAL_VECTOR | |||
635 | .balign 32 | 635 | .balign 32 |
636 | .rept 7 | 636 | .rept 7 |
637 | .if vector < NR_VECTORS | 637 | .if vector < NR_VECTORS |
638 | .if vector != FIRST_EXTERNAL_VECTOR | 638 | .if vector <> FIRST_EXTERNAL_VECTOR |
639 | CFI_ADJUST_CFA_OFFSET -4 | 639 | CFI_ADJUST_CFA_OFFSET -4 |
640 | .endif | 640 | .endif |
641 | 1: pushl $(~vector+0x80) /* Note: always in signed byte range */ | 641 | 1: pushl $(~vector+0x80) /* Note: always in signed byte range */ |
642 | CFI_ADJUST_CFA_OFFSET 4 | 642 | CFI_ADJUST_CFA_OFFSET 4 |
643 | .if ((vector-FIRST_EXTERNAL_VECTOR)%7) != 6 | 643 | .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6 |
644 | jmp 2f | 644 | jmp 2f |
645 | .endif | 645 | .endif |
646 | .previous | 646 | .previous |