Remove stale declaration for dc_iostream_get_name()

This function no longer exists, it was subsumed by the new
DC_IOCTL_BLE_GET_NAME ioctl instead.  The declaration for it had just
not been removed when the definition went away.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Linus Torvalds 2020-05-07 13:12:21 -07:00
parent 8b53c70950
commit 761089c8f2

View File

@ -310,19 +310,6 @@ dc_iostream_sleep (dc_iostream_t *iostream, unsigned int milliseconds);
dc_status_t
dc_iostream_close (dc_iostream_t *iostream);
/**
* Get the name of the device
*
* @param[in] iostream A valid I/O stream.
* @returns a NUL-terminated constant C string that has a lifetime
* until the close of the iostream, or NUL if no name exists.
*
* The name depends on the iostream transport. For a BLE device, it
* is the name of the device during device discovery.
*/
const char *
dc_iostream_get_name (dc_iostream_t *iostream);
dc_status_t
dc_usb_storage_open (dc_iostream_t **out, dc_context_t *context, const char *name);