]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/asm-generic/int-ll64.h
dmaengine: Fix access to uninitialized dma_slave_caps
[mirror_ubuntu-bionic-kernel.git] / include / asm-generic / int-ll64.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
d13ff31c
PA
2/*
3 * asm-generic/int-ll64.h
4 *
5 * Integer declarations for architectures which use "long long"
6 * for 64-bit types.
7 */
d13ff31c
PA
8#ifndef _ASM_GENERIC_INT_LL64_H
9#define _ASM_GENERIC_INT_LL64_H
10
8a1ab315 11#include <uapi/asm-generic/int-ll64.h>
d13ff31c 12
d13ff31c
PA
13
14#ifndef __ASSEMBLY__
15
16typedef signed char s8;
17typedef unsigned char u8;
18
19typedef signed short s16;
20typedef unsigned short u16;
21
22typedef signed int s32;
23typedef unsigned int u32;
24
25typedef signed long long s64;
26typedef unsigned long long u64;
27
c25bd298
PA
28#define S8_C(x) x
29#define U8_C(x) x ## U
30#define S16_C(x) x
31#define U16_C(x) x ## U
32#define S32_C(x) x
33#define U32_C(x) x ## U
34#define S64_C(x) x ## LL
35#define U64_C(x) x ## ULL
36
37#else /* __ASSEMBLY__ */
38
39#define S8_C(x) x
40#define U8_C(x) x
41#define S16_C(x) x
42#define U16_C(x) x
43#define S32_C(x) x
44#define U32_C(x) x
45#define S64_C(x) x
46#define U64_C(x) x
47
d13ff31c
PA
48#endif /* __ASSEMBLY__ */
49
d13ff31c 50#endif /* _ASM_GENERIC_INT_LL64_H */