[IA64] Remove sparse warning from unwind code

Running ia64 through sparse gives warnings in the unwind code.

include/asm-ia64/unwind.h:84:17: error: dubious bitfield without explicit `signed' or `unsigned'

Make the bitfield explicitly unsigned.

Signed-off-by: Keith Owens <kaos@sgi.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>

authored by Keith Owens and committed by Tony Luck 1f0ef4ef 8e43d75a

+1 -1
+1 -1
include/asm-ia64/unwind.h
··· 81 struct unw_ireg { 82 unsigned long *loc; 83 struct unw_ireg_nat { 84 - long type : 3; /* enum unw_nat_type */ 85 signed long off : 61; /* NaT word is at loc+nat.off */ 86 } nat; 87 } r4, r5, r6, r7;
··· 81 struct unw_ireg { 82 unsigned long *loc; 83 struct unw_ireg_nat { 84 + unsigned long type : 3; /* enum unw_nat_type */ 85 signed long off : 61; /* NaT word is at loc+nat.off */ 86 } nat; 87 } r4, r5, r6, r7;