diff options
| author | Gabriel Laskar <[email protected]> | 2015-10-06 16:27:35 +0200 |
|---|---|---|
| committer | Thomas Gleixner <[email protected]> | 2015-10-11 21:24:27 +0200 |
| commit | 7e0abcd6b7ec1452bf4a850fccbae44043c05806 (patch) | |
| tree | f346c22162fbc003686cfce975a23cf109ccb27b | |
| parent | 25cb62b76430a91cc6195f902e61c2cb84ade622 (diff) | |
x86/mce: Include linux/ioctl.h in uapi mce header
asm/ioctls.h contains definition for termios, not just the _IO* macros.
This error was found with a tool in development used to generate
automated pretty-printing functions for ioctl decoding in strace.
Signed-off-by: Gabriel Laskar <[email protected]>
Acked-by: Arnd Bergmann <[email protected]>
Cc: Greg Kroah-Hartman <[email protected]>
Cc: Borislav Petkov <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Thomas Gleixner <[email protected]>
| -rw-r--r-- | arch/x86/include/uapi/asm/mce.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/uapi/asm/mce.h b/arch/x86/include/uapi/asm/mce.h index 76880ede9a35..03429da2fa80 100644 --- a/arch/x86/include/uapi/asm/mce.h +++ b/arch/x86/include/uapi/asm/mce.h @@ -2,7 +2,7 @@ #define _UAPI_ASM_X86_MCE_H #include <linux/types.h> -#include <asm/ioctls.h> +#include <linux/ioctl.h> /* Fields are zero when not available */ struct mce { |