diff options
author | Maciej Zenczykowski <maze@google.com> | 2007-04-04 19:08:27 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-04-04 21:12:48 -0700 |
commit | 58e949139014a852a83b5ef071136b1f50c86ad1 (patch) | |
tree | 447803d964bd8fb955056bfd9c4f1949d6b01bb0 | |
parent | ba6e8564f459211117ce300eae2c7fdd23befe34 (diff) | |
download | linux-3.10-58e949139014a852a83b5ef071136b1f50c86ad1.tar.gz linux-3.10-58e949139014a852a83b5ef071136b1f50c86ad1.tar.bz2 linux-3.10-58e949139014a852a83b5ef071136b1f50c86ad1.zip |
[PATCH] ia64: desc_empty thinko/typo fix
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>
-rw-r--r-- | include/asm-ia64/processor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-ia64/processor.h b/include/asm-ia64/processor.h index 5830d36fd8e..4f4ee1c2db2 100644 --- a/include/asm-ia64/processor.h +++ b/include/asm-ia64/processor.h @@ -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 |