Skip to content

Commit

Permalink
Merge tag 'x86_urgent_for_v6.3' of git://git.kernel.org/pub/scm/linux…
Browse files Browse the repository at this point in the history
…/kernel/git/tip/tip

Pull x86 fix from Borislav Petkov

 - Fix for older binutils which do not support C-syntax constant
   suffixes

* tag 'x86_urgent_for_v6.3' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
  x86/alternatives: Do not use integer constant suffixes in inline asm
  • Loading branch information
torvalds committed Apr 23, 2023
2 parents d6b7822 + c22ef56 commit 97249f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/include/asm/alternative.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#define ALT_FLAGS_SHIFT 16

#define ALT_FLAG_NOT BIT(0)
#define ALT_FLAG_NOT (1 << 0)
#define ALT_NOT(feature) ((ALT_FLAG_NOT << ALT_FLAGS_SHIFT) | (feature))

#ifndef __ASSEMBLY__
Expand Down

0 comments on commit 97249f0

Please sign in to comment.