X-Git-Url: https://git.gag.com/?a=blobdiff_plain;ds=sidebyside;f=ia64%2Fsysdeps.h;h=9d893e6c5dfb3616a9c5a040179c051bfd460e47;hb=3384f0373c8758e5ddd08f489ad7110898dd5406;hp=e11e6b729a95d63f4b388775b114ccd3243caee3;hpb=528b4479a96491431b243bf02da43c792962fb27;p=debian%2Felilo diff --git a/ia64/sysdeps.h b/ia64/sysdeps.h index e11e6b7..9d893e6 100644 --- a/ia64/sysdeps.h +++ b/ia64/sysdeps.h @@ -86,7 +86,7 @@ start_kernel(VOID *kentry, VOID *bp) asm volatile ("mov r28=%1; br.sptk.few %0" :: "b"(kentry),"r"(bp)); } -static inline const UINT64 +static inline UINT64 __ia64_swab64 (UINT64 x) { UINT64 result; @@ -95,13 +95,13 @@ __ia64_swab64 (UINT64 x) return result; } -static inline const UINT32 +static inline UINT32 __ia64_swab32 (UINT32 x) { return __ia64_swab64(x) >> 32; } -static inline const UINT16 +static inline UINT16 __ia64_swab16(UINT16 x) { return __ia64_swab64(x) >> 48;