staging: rtl8192u: remove redundant assignment to pointer crypt
[linux/fpc-iii.git] / arch / s390 / include / uapi / asm / clp.h
blobb36d9e9cdde6377e2f846a258538a6cfc292a6b9
1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 /*
3 * ioctl interface for /dev/clp
5 * Copyright IBM Corp. 2016
6 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
7 */
9 #ifndef _ASM_CLP_H
10 #define _ASM_CLP_H
12 #include <linux/types.h>
13 #include <linux/ioctl.h>
15 struct clp_req {
16 unsigned int c : 1;
17 unsigned int r : 1;
18 unsigned int lps : 6;
19 unsigned int cmd : 8;
20 unsigned int : 16;
21 unsigned int reserved;
22 __u64 data_p;
25 #define CLP_IOCTL_MAGIC 'c'
27 #define CLP_SYNC _IOWR(CLP_IOCTL_MAGIC, 0xC1, struct clp_req)
29 #endif