1184610Salfred/* $FreeBSD$ */
2184610Salfred/*-
3184610Salfred * Copyright (c) 2008 Hans Petter Selasky. All rights reserved.
4184610Salfred *
5184610Salfred * Redistribution and use in source and binary forms, with or without
6184610Salfred * modification, are permitted provided that the following conditions
7184610Salfred * are met:
8184610Salfred * 1. Redistributions of source code must retain the above copyright
9184610Salfred *    notice, this list of conditions and the following disclaimer.
10184610Salfred * 2. Redistributions in binary form must reproduce the above copyright
11184610Salfred *    notice, this list of conditions and the following disclaimer in the
12184610Salfred *    documentation and/or other materials provided with the distribution.
13184610Salfred *
14184610Salfred * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15184610Salfred * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16184610Salfred * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17184610Salfred * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18184610Salfred * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19184610Salfred * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20184610Salfred * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21184610Salfred * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22184610Salfred * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23184610Salfred * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24184610Salfred * SUCH DAMAGE.
25184610Salfred */
26184610Salfred
27201705Sthompsa#ifndef _DUMP_H_
28201705Sthompsa#define	_DUMP_H_
29201705Sthompsa
30184610Salfredconst char *dump_mode(uint8_t value);
31184610Salfredconst char *dump_speed(uint8_t value);
32184610Salfredconst char *dump_power_mode(uint8_t value);
33201705Sthompsavoid	dump_string_by_index(struct libusb20_device *pdev, uint8_t index);
34188622Sthompsavoid	dump_device_info(struct libusb20_device *pdev, uint8_t show_drv);
35184610Salfredvoid	dump_be_quirk_names(struct libusb20_backend *pbe);
36184610Salfredvoid	dump_be_dev_quirks(struct libusb20_backend *pbe);
37184610Salfredvoid	dump_device_desc(struct libusb20_device *pdev);
38184610Salfredvoid	dump_config(struct libusb20_device *pdev, uint8_t all_cfg);
39201705Sthompsa
40201705Sthompsa#endif	/* _DUMP_H_ */
41