mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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>
This commit is contained in:
parent
8de887c8ee
commit
f5e2a17e7d
2 changed files with 0 additions and 55 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue