Linux Kernel
3.7.1
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
include
linux
unaligned
be_struct.h
Go to the documentation of this file.
1
#ifndef _LINUX_UNALIGNED_BE_STRUCT_H
2
#define _LINUX_UNALIGNED_BE_STRUCT_H
3
4
#include <
linux/unaligned/packed_struct.h
>
5
6
static
inline
u16
get_unaligned_be16(
const
void
*
p
)
7
{
8
return
__get_unaligned_cpu16((
const
u8
*)p);
9
}
10
11
static
inline
u32
get_unaligned_be32
(
const
void
*p)
12
{
13
return
__get_unaligned_cpu32((
const
u8
*)p);
14
}
15
16
static
inline
u64
get_unaligned_be64
(
const
void
*p)
17
{
18
return
__get_unaligned_cpu64((
const
u8
*)p);
19
}
20
21
static
inline
void
put_unaligned_be16(
u16
val
,
void
*p)
22
{
23
__put_unaligned_cpu16(val, p);
24
}
25
26
static
inline
void
put_unaligned_be32
(
u32
val
,
void
*p)
27
{
28
__put_unaligned_cpu32(val, p);
29
}
30
31
static
inline
void
put_unaligned_be64
(
u64
val
,
void
*p)
32
{
33
__put_unaligned_cpu64(val, p);
34
}
35
36
#endif
/* _LINUX_UNALIGNED_BE_STRUCT_H */
Generated on Thu Jan 10 2013 14:52:43 for Linux Kernel by
1.8.2