OpenCores
URL https://opencores.org/ocsvn/or1k_soc_on_altera_embedded_dev_kit/or1k_soc_on_altera_embedded_dev_kit/trunk

Subversion Repositories or1k_soc_on_altera_embedded_dev_kit

[/] [or1k_soc_on_altera_embedded_dev_kit/] [trunk/] [linux-2.6/] [linux-2.6.24/] [include/] [asm-h8300/] [types.h] - Blame information for rev 9

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 3 xianfeng
#ifndef _H8300_TYPES_H
2
#define _H8300_TYPES_H
3
 
4
#if !defined(__ASSEMBLY__)
5
 
6
/*
7
 * This file is never included by application software unless
8
 * explicitly requested (e.g., via linux/types.h) in which case the
9
 * application is Linux specific so (user-) name space pollution is
10
 * not a major issue.  However, for interoperability, libraries still
11
 * need to be careful to avoid a name clashes.
12
 */
13
 
14
typedef unsigned short umode_t;
15
 
16
/*
17
 * __xx is ok: it doesn't pollute the POSIX namespace. Use these in the
18
 * header files exported to user space
19
 */
20
 
21
typedef __signed__ char __s8;
22
typedef unsigned char __u8;
23
 
24
typedef __signed__ short __s16;
25
typedef unsigned short __u16;
26
 
27
typedef __signed__ int __s32;
28
typedef unsigned int __u32;
29
 
30
#if defined(__GNUC__)
31
__extension__ typedef __signed__ long long __s64;
32
__extension__ typedef unsigned long long __u64;
33
#endif
34
 
35
/*
36
 * These aren't exported outside the kernel to avoid name space clashes
37
 */
38
#ifdef __KERNEL__
39
 
40
typedef signed char s8;
41
typedef unsigned char u8;
42
 
43
typedef signed short s16;
44
typedef unsigned short u16;
45
 
46
typedef signed int s32;
47
typedef unsigned int u32;
48
 
49
typedef signed long long s64;
50
typedef unsigned long long u64;
51
 
52
#define BITS_PER_LONG 32
53
 
54
/* Dma addresses are 32-bits wide.  */
55
 
56
typedef u32 dma_addr_t;
57
 
58
#endif /* __KERNEL__ */
59
 
60
#endif /* __ASSEMBLY__ */
61
 
62
#endif /* _H8300_TYPES_H */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.