aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-blackfin
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-blackfin')
-rw-r--r--include/asm-blackfin/types.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-blackfin/types.h b/include/asm-blackfin/types.h
index 36f8dc8c52ba..9785a6d531c6 100644
--- a/include/asm-blackfin/types.h
+++ b/include/asm-blackfin/types.h
@@ -27,9 +27,9 @@ typedef __signed__ int __s32;
27typedef unsigned int __u32; 27typedef unsigned int __u32;
28 28
29/* HK0617 -- Changes to unsigned long temporarily */ 29/* HK0617 -- Changes to unsigned long temporarily */
30#if defined(__GNUC__) && !defined(__STRICT_ANSI__) 30#if defined(__GNUC__)
31typedef __signed__ long long __s64; 31__extension__ typedef __signed__ long long __s64;
32typedef unsigned long long __u64; 32__extension__ typedef unsigned long long __u64;
33#endif 33#endif
34 34
35#endif /* __ASSEMBLY__ */ 35#endif /* __ASSEMBLY__ */