mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usbutils.git
synced 2024-11-14 14:33:44 +08:00
23b232bf36
This makes `reuse lint` happy as well as license lawyers... Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
51 lines
1.7 KiB
C
51 lines
1.7 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* USB descriptor dumping
|
|
*
|
|
* Copyright (C) 2017 Michael Drake <michael.drake@codethink.co.uk>
|
|
*/
|
|
|
|
#ifndef _DESC_DUMP_H
|
|
#define _DESC_DUMP_H
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
/**
|
|
* Buffer length value indicating that the buffer length should be
|
|
* read from the value of the first field in the buffer, as defined
|
|
* by the first field descriptor definition.
|
|
*/
|
|
#define DESC_BUF_LEN_FROM_BUF 0xffffffff
|
|
|
|
/**
|
|
* Dump descriptor using a descriptor definition array.
|
|
*
|
|
* This function dumps the USB descriptor data given in the byte array,
|
|
* `buf`, according to the descriptor definition array given in `desc`.
|
|
*
|
|
* The first byte(s) of `buf` must correspond to the first field definition
|
|
* in the `desc` descriptor definition array.
|
|
*
|
|
* \param[in] dev LibUSB device handle.
|
|
* \param[in] desc Array of descriptor field definitions to use to interpret
|
|
* `buf`. This array constitutes the descriptor definition.
|
|
* The final entry in the array must have a NULL field name,
|
|
* which is interpreted as the end of the array.
|
|
* \param[in] buf Byte array containing the descriptor data to dump.
|
|
* \param[in] buf_len Byte length of `buf` or `DESC_BUF_LEN_FROM_BUF` to get
|
|
* the length from the value of the first field in the
|
|
* descriptor data.
|
|
* \param[in] indent Indent level to use for descriptor dump.
|
|
*/
|
|
extern void desc_dump(
|
|
libusb_device_handle *dev,
|
|
const struct desc *desc,
|
|
const unsigned char *buf,
|
|
unsigned int buf_len,
|
|
unsigned int indent);
|
|
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
#endif /* _DESC_DUMP_H */
|