summaryrefslogtreecommitdiff
path: root/patches/collateral-evolutions/network/63-tty-termios/net_bluetooth_rfcomm_tty.patch
blob: 5993b9232042abb0d5ec930a3d11810a77850778 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- a/net/bluetooth/rfcomm/tty.c
+++ b/net/bluetooth/rfcomm/tty.c
@@ -873,7 +873,11 @@ static int rfcomm_tty_ioctl(struct tty_s
 
 static void rfcomm_tty_set_termios(struct tty_struct *tty, struct ktermios *old)
 {
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,7,0))
 	struct ktermios *new = &tty->termios;
+#else
+	struct ktermios *new = tty->termios;
+#endif
 	int old_baud_rate = tty_termios_baud_rate(old);
 	int new_baud_rate = tty_termios_baud_rate(new);