1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
3 * IOCTL interface for SCLP
5 * Copyright IBM Corp. 2012
7 * Author: Michael Holzheu <holzheu@linux.vnet.ibm.com>
10 #ifndef _ASM_SCLP_CTL_H
11 #define _ASM_SCLP_CTL_H
13 #include <linux/types.h>
15 struct sclp_ctl_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)