xref: /OK3568_Linux_fs/buildroot/package/python3/0008-Serial-ioctl-workaround.patch (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1From 9e6211b0d6d4610e5fb7d2c7e1152eb7c64d968b Mon Sep 17 00:00:00 2001
2From: Baruch Siach <baruch@tkos.co.il>
3Date: Wed, 23 Dec 2015 11:44:02 +0100
4Subject: [PATCH] Serial ioctl() workaround
5
6The ioctls.h of some architectures (notably xtensa) references structs from
7linux/serial.h. Make sure to include this header as well.
8
9Also, undef TIOCTTYGSTRUCT that require reference to internal kernel tty_struct,
10but isn't actually referenced in modern kernels.
11
12Signed-off-by: Baruch Siach <baruch@tkos.co.il>
13---
14 Modules/termios.c | 2 ++
15 1 file changed, 2 insertions(+)
16
17diff --git a/Modules/termios.c b/Modules/termios.c
18index 75e5e52320..eefbddfe69 100644
19--- a/Modules/termios.c
20+++ b/Modules/termios.c
21@@ -15,7 +15,9 @@
22 #endif
23
24 #include <termios.h>
25+#include <linux/serial.h>
26 #include <sys/ioctl.h>
27+#undef TIOCTTYGSTRUCT
28
29 /* HP-UX requires that this be included to pick up MDCD, MCTS, MDSR,
30  * MDTR, MRI, and MRTS (apparently used internally by some things
31--
322.25.1
33
34