]> git.proxmox.com Git - mirror_edk2.git/blob - QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/OhciDebug.h
QuarkSocPkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / QuarkSocPkg / QuarkSouthCluster / Usb / Ohci / Dxe / OhciDebug.h
1 /** @file
2 This file contains the definination for host controller
3 debug support routines.
4
5 Copyright (c) 2013-2015 Intel Corporation.
6
7 SPDX-License-Identifier: BSD-2-Clause-Patent
8
9 **/
10
11
12
13 /*++
14
15 Routine Description:
16
17 Print the data of ED and the TDs attached to the ED
18
19 @param Uhc Pointer to OHCI private data
20 @param Ed Pointer to a ED to free
21 @param Td Pointer to the Td head
22
23 @retval EFI_SUCCESS ED
24
25 **/
26 EFI_STATUS
27 OhciDumpEdTdInfo (
28 IN USB_OHCI_HC_DEV *Uhc,
29 IN ED_DESCRIPTOR *Ed,
30 IN TD_DESCRIPTOR *Td,
31 BOOLEAN Stage
32 );
33
34
35
36
37
38
39
40
41
42