staging: rtl8192u: remove redundant assignment to pointer crypt
[linux/fpc-iii.git] / arch / s390 / include / uapi / asm / sclp_ctl.h
blobe4e8c4dcd1267a163b5dc33cc6aac472b7f8941c
1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 /*
3 * IOCTL interface for SCLP
5 * Copyright IBM Corp. 2012
7 * Author: Michael Holzheu <holzheu@linux.vnet.ibm.com>
8 */
10 #ifndef _ASM_SCLP_CTL_H
11 #define _ASM_SCLP_CTL_H
13 #include <linux/types.h>
15 struct sclp_ctl_sccb {
16 __u32 cmdw;
17 __u64 sccb;
18 } __attribute__((packed));
20 #define SCLP_CTL_IOCTL_MAGIC 0x10
22 #define SCLP_CTL_SCCB \
23 _IOWR(SCLP_CTL_IOCTL_MAGIC, 0x10, struct sclp_ctl_sccb)
25 #endif