Revert "Neither asm/types.h nor linux/types.h is required for arch/ia64/include/asm/fpu.h"

asm/fpu.h uses the __IA64_UL macro which is declared in asm/types.h, so
this include is really required. Without it, GNU libc fails to build.

This reverts commit 2678c07b07ac2076675e5d57653bdf02e9af1950.

Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Acked-by: Fenghua Yu <fenghua.yu@intel.com>

authored by Aurelien Jarno and committed by Fenghua Yu 18282b36 390bd132

+2
+2
arch/ia64/include/asm/fpu.h
··· 6 * David Mosberger-Tang <davidm@hpl.hp.com> 7 */ 8 9 /* floating point status register: */ 10 #define FPSR_TRAP_VD (1 << 0) /* invalid op trap disabled */ 11 #define FPSR_TRAP_DD (1 << 1) /* denormal trap disabled */
··· 6 * David Mosberger-Tang <davidm@hpl.hp.com> 7 */ 8 9 + #include <linux/types.h> 10 + 11 /* floating point status register: */ 12 #define FPSR_TRAP_VD (1 << 0) /* invalid op trap disabled */ 13 #define FPSR_TRAP_DD (1 << 1) /* denormal trap disabled */