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_64.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_64.S')
-rw-r--r-- | arch/x86/kernel/entry_64.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/entry_64.S b/arch/x86/kernel/entry_64.S index 9b2aeaac9a6b..2b42362a85b2 100644 --- a/arch/x86/kernel/entry_64.S +++ b/arch/x86/kernel/entry_64.S | |||
@@ -644,12 +644,12 @@ vector=FIRST_EXTERNAL_VECTOR | |||
644 | .balign 32 | 644 | .balign 32 |
645 | .rept 7 | 645 | .rept 7 |
646 | .if vector < NR_VECTORS | 646 | .if vector < NR_VECTORS |
647 | .if vector != FIRST_EXTERNAL_VECTOR | 647 | .if vector <> FIRST_EXTERNAL_VECTOR |
648 | CFI_ADJUST_CFA_OFFSET -8 | 648 | CFI_ADJUST_CFA_OFFSET -8 |
649 | .endif | 649 | .endif |
650 | 1: pushq $(~vector+0x80) /* Note: always in signed byte range */ | 650 | 1: pushq $(~vector+0x80) /* Note: always in signed byte range */ |
651 | CFI_ADJUST_CFA_OFFSET 8 | 651 | CFI_ADJUST_CFA_OFFSET 8 |
652 | .if ((vector-FIRST_EXTERNAL_VECTOR)%7) != 6 | 652 | .if ((vector-FIRST_EXTERNAL_VECTOR)%7) <> 6 |
653 | jmp 2f | 653 | jmp 2f |
654 | .endif | 654 | .endif |
655 | .previous | 655 | .previous |