source: mainline/uspace/lib/usbdev/include/usb/dev/recognise.h@ c6f23a7

Last change on this file since c6f23a7 was d7f7a4a, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 4 years ago

Replace some license headers with SPDX identifier

Headers are replaced using tools/transorm-copyright.sh only
when it can be matched verbatim with the license header used
throughout most of the codebase.

  • Property mode set to 100644
File size: 725 bytes
Line 
1/*
2 * SPDX-FileCopyrightText: 2011 Vojtech Horky
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7/** @addtogroup libusbdev
8 * @{
9 */
10/** @file
11 * USB device recognition.
12 */
13
14#ifndef LIBUSBDEV_RECOGNISE_H_
15#define LIBUSBDEV_RECOGNISE_H_
16
17#include <usb/descriptor.h>
18#include <usb/dev/pipes.h>
19
20#include <devman.h>
21
22extern errno_t usb_device_create_match_ids_from_device_descriptor(
23 const usb_standard_device_descriptor_t *, match_id_list_t *);
24
25extern errno_t usb_device_create_match_ids_from_interface(
26 const usb_standard_device_descriptor_t *,
27 const usb_standard_interface_descriptor_t *, match_id_list_t *);
28
29extern errno_t usb_device_create_match_ids(usb_pipe_t *, match_id_list_t *);
30
31#endif
32
33/**
34 * @}
35 */
Note: See TracBrowser for help on using the repository browser.