Skip to content

Commit

Permalink
[PATCH] ia64: desc_empty thinko/typo fix
Browse files Browse the repository at this point in the history
Just a one-byter for an ia64 thinko/typo - already fixed for i386 and x86_64.

Acked-by: Tony Luck <tony.luck@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Maciej Zenczykowski authored and Linus Torvalds committed Apr 5, 2007
1 parent ba6e856 commit 58e9491
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/asm-ia64/processor.h
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ struct desc_struct {
unsigned int a, b;
};

#define desc_empty(desc) (!((desc)->a + (desc)->b))
#define desc_empty(desc) (!((desc)->a | (desc)->b))
#define desc_equal(desc1, desc2) (((desc1)->a == (desc2)->a) && ((desc1)->b == (desc2)->b))

#define GDT_ENTRY_TLS_ENTRIES 3
Expand Down

0 comments on commit 58e9491

Please sign in to comment.