Subversion Repositories HelenOS

Rev

Rev 1888 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1888 Rev 2003
Line 33... Line 33...
33
 */
33
 */
34
 
34
 
35
#ifndef KERN_mips32_BYTEORDER_H_
35
#ifndef KERN_mips32_BYTEORDER_H_
36
#define KERN_mips32_BYTEORDER_H_
36
#define KERN_mips32_BYTEORDER_H_
37
 
37
 
38
#include <arch/types.h>
-
 
39
#include <byteorder.h>
38
#include <byteorder.h>
40
 
39
 
41
#ifdef BIG_ENDIAN
40
#ifdef BIG_ENDIAN
42
static inline uint64_t uint64_t_le2host(uint64_t n)
-
 
43
{
41
 
44
    return uint64_t_byteorder_swap(n);
42
#define uint32_t_le2host(n)     uint64_t_byteorder_swap(n)
45
}
-
 
-
 
43
#define uint64_t_le2host(n)     uint32_t_byteorder_swap(n)
46
 
44
 
47
static inline unative_t unative_t_le2host(unative_t n)
45
#define uint32_t_be2host(n)     (n)
48
{
-
 
49
    return uint32_t_byteorder_swap(n);
46
#define uint64_t_be2host(n)     (n)
50
}
-
 
51
 
47
 
52
#else
48
#else
-
 
49
 
53
#  define unative_t_le2host(n)      (n)
50
#define uint32_t_le2host(n)     (n)
54
#  define uint64_t_le2host(n)       (n)
51
#define uint64_t_le2host(n)     (n)
-
 
52
 
-
 
53
#define uint32_t_be2host(n)     uint64_t_byteorder_swap(n)
-
 
54
#define uint64_t_be2host(n)     uint32_t_byteorder_swap(n)
-
 
55
 
55
#endif
56
#endif
56
 
57
 
57
#endif
58
#endif
58
 
59
 
59
/** @}
60
/** @}