blob: 1b08ef860a6654f768de3cdadcbd25380fa8a83b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* $Id: types.h,v 1.13 2001/12/21 01:22:59 davem Exp $ */
2#ifndef _SPARC_TYPES_H
3#define _SPARC_TYPES_H
4
5/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * This file is never included by application software unless
7 * explicitly requested (e.g., via linux/types.h) in which case the
8 * application is Linux specific so (user-) name space pollution is
9 * not a major issue. However, for interoperability, libraries still
10 * need to be careful to avoid a name clashes.
11 */
H. Peter Anvina3727dc2008-04-06 10:35:12 -070012#include <asm-generic/int-ll64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14#ifndef __ASSEMBLY__
15
16typedef unsigned short umode_t;
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#endif /* __ASSEMBLY__ */
19
20#ifdef __KERNEL__
21
22#define BITS_PER_LONG 32
23
24#ifndef __ASSEMBLY__
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026typedef u32 dma_addr_t;
27typedef u32 dma64_addr_t;
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#endif /* __ASSEMBLY__ */
30
31#endif /* __KERNEL__ */
32
33#endif /* defined(_SPARC_TYPES_H) */