change source file mode to 0644 instead of 0755
[profile/mobile/platform/kernel/u-boot-tm1.git] / arch / arm / include / asm / arch-sc8825 / fdl_stdio.h
1 #ifndef __FDL_STDIO_H_
2 #define ___FDL_STDIO_H
3
4 #include "sci_types.h"
5
6 #ifndef NULL
7 #ifdef __cplusplus
8 #define NULL    0
9 #else
10 #define NULL    ((void*)0)
11 #endif /* __cplusplus */
12 #endif /* NULL */
13
14 #ifdef __cplusplus
15 extern "C" {
16 #endif /* __cplusplus */
17
18 /******************************************************************************
19  * FDL_memcpy
20  ******************************************************************************/
21 void *FDL_memcpy (void *dst, const void *src, unsigned int count);
22
23 /******************************************************************************
24  * FDL_memset
25  ******************************************************************************/
26 void *FDL_memset (void *dst, int c, unsigned int count);
27 unsigned short EndianConv_16 (unsigned short value);
28 unsigned int EndianConv_32 (unsigned int value);
29
30 #ifdef __cplusplus
31 }
32 #endif /* __cplusplus */
33
34 #endif  /* FDL_STDIO_H */
35