staging: rtl8192u: remove redundant assignment to pointer crypt
[linux/fpc-iii.git] / arch / s390 / include / uapi / asm / debug.h
blobc7c564d9aea48c9ee5675c400671087debb1a62b
1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 /*
3 * S/390 debug facility
5 * Copyright IBM Corp. 1999, 2000
6 */
8 #ifndef _UAPIDEBUG_H
9 #define _UAPIDEBUG_H
11 #include <linux/fs.h>
13 /* Note:
14 * struct __debug_entry must be defined outside of #ifdef __KERNEL__
15 * in order to allow a user program to analyze the 'raw'-view.
18 struct __debug_entry{
19 union {
20 struct {
21 unsigned long long clock:52;
22 unsigned long long exception:1;
23 unsigned long long level:3;
24 unsigned long long cpuid:8;
25 } fields;
27 unsigned long long stck;
28 } id;
29 void* caller;
30 } __attribute__((packed));
33 #define __DEBUG_FEATURE_VERSION 2 /* version of debug feature */
35 #endif /* _UAPIDEBUG_H */