aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390/include/asm/types.h
blob: 0b5d550a0478b8bba22b0d0400290215bf085ba9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: GPL-2.0-or-later */

#ifndef _ASM_S390_TYPES_H
#define _ASM_S390_TYPES_H

#include <uapi/asm/types.h>

#ifndef __ASSEMBLY__

union register_pair {
	unsigned __int128 pair;
	struct {
		unsigned long even;
		unsigned long odd;
	};
};

#endif /* __ASSEMBLY__ */
#endif /* _ASM_S390_TYPES_H */