mfd: wm8350-i2c: Make sure the i2c regmap functions are compiled
[linux/fpc-iii.git] / arch / s390 / include / uapi / asm / sclp_ctl.h
blobf2818613ee4191de4946ccc2fa8e55eee3d15e78
1 /*
2 * IOCTL interface for SCLP
4 * Copyright IBM Corp. 2012
6 * Author: Michael Holzheu <holzheu@linux.vnet.ibm.com>
7 */
9 #ifndef _ASM_SCLP_CTL_H
10 #define _ASM_SCLP_CTL_H
12 #include <linux/types.h>
14 struct sclp_ctl_sccb {
15 __u32 cmdw;
16 __u64 sccb;
17 } __attribute__((packed));
19 #define SCLP_CTL_IOCTL_MAGIC 0x10
21 #define SCLP_CTL_SCCB \
22 _IOWR(SCLP_CTL_IOCTL_MAGIC, 0x10, struct sclp_ctl_sccb)
24 #endif