]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Pci/UhciDxe/UhciDebug.h
a55948c3e2aabd71a334b0d064a6fdd2800da966
[mirror_edk2.git] / MdeModulePkg / Bus / Pci / UhciDxe / UhciDebug.h
1 /** @file
2
3 This file contains the definination for host controller debug support routines
4
5 Copyright (c) 2007, Intel Corporation
6 All rights reserved. This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16 #ifndef _EFI_UHCI_DEBUG_H_
17 #define _EFI_UHCI_DEBUG_H_
18
19
20 /**
21 Dump the content of QH structure.
22
23 @param QhSw Pointer to software QH structure.
24
25 @return None.
26
27 **/
28 VOID
29 UhciDumpQh (
30 IN UHCI_QH_SW *QhSw
31 )
32 ;
33
34
35 /**
36 Dump the content of TD structure.
37
38 @param TdSw Pointer to software TD structure.
39
40 @return None.
41
42 **/
43 VOID
44 UhciDumpTds (
45 IN UHCI_TD_SW *TdSw
46 )
47 ;
48
49 #endif