]> git.proxmox.com Git - mirror_edk2.git/blob - QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/OhciDebug.h
QuarkSocPkg: Add new package for Quark SoC X1000
[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 This program and the accompanying materials
8 are licensed and made available under the terms and conditions of the BSD License
9 which accompanies this distribution. The full text of the license may be found at
10 http://opensource.org/licenses/bsd-license.php
11
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14
15 **/
16
17
18
19 /*++
20
21 Routine Description:
22
23 Print the data of ED and the TDs attached to the ED
24
25 @param Uhc Pointer to OHCI private data
26 @param Ed Pointer to a ED to free
27 @param Td Pointer to the Td head
28
29 @retval EFI_SUCCESS ED
30
31 **/
32 EFI_STATUS
33 OhciDumpEdTdInfo (
34 IN USB_OHCI_HC_DEV *Uhc,
35 IN ED_DESCRIPTOR *Ed,
36 IN TD_DESCRIPTOR *Td,
37 BOOLEAN Stage
38 );
39
40
41
42
43
44
45
46
47
48