diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2018-03-11 13:03:42 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-03-13 22:34:57 -0700 |
commit | f5e2a17e7d0fa041590ecdc7da3b970cc15537bd (patch) | |
tree | c1cf3b19b1808d5b1b25c1fbe1d19ac24d156733 /core/qtserialbluetooth.cpp | |
parent | 8de887c8ee898c64d36dfda44e1ea55f538f1e2d (diff) | |
download | subsurface-f5e2a17e7d0fa041590ecdc7da3b970cc15537bd.tar.gz |
Subsurface update for upstream libdivecomputer changes
So because I merged with upstream libdivecomputer, and it no longer does
the "halfduplex emulation" thing in the IO layer, and instead does it in
the only Suunto backend that needed it, that also affected our custom IO
layer in subsurface.
Sure, I could have left a dummy interface and left subsurface with some
ugly dead code, but it's really better to just get rid of the code.
So when Dirk pulls in the libdivecomputer updates from
https://github.com/torvalds/libdc-for-dirk.git Subsurface-branch
this patch to remove the halfduplex code in subsurface is also needed.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Stefan Fuchs <sfuchs@gmx.de>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/qtserialbluetooth.cpp')
-rw-r--r-- | core/qtserialbluetooth.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/qtserialbluetooth.cpp b/core/qtserialbluetooth.cpp index 54a21d037..fecd58a08 100644 --- a/core/qtserialbluetooth.cpp +++ b/core/qtserialbluetooth.cpp @@ -70,7 +70,6 @@ static dc_custom_io_t ble_serial_ops = { .serial_configure = NULL, .serial_set_dtr = NULL, .serial_set_rts = NULL, - .serial_set_halfduplex = NULL, .serial_set_break = NULL, .packet_size = 20, @@ -605,7 +604,6 @@ dc_custom_io_t qt_serial_ops = { .serial_configure = NULL, .serial_set_dtr = NULL, .serial_set_rts = NULL, - .serial_set_halfduplex = NULL, .serial_set_break = NULL, #ifdef BLE_SUPPORT |