]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Pci/UhciDxe/UhciDebug.h
MdeModulePkg: Replace BSD License with BSD+Patent License
[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. All rights reserved.<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 #ifndef _EFI_UHCI_DEBUG_H_
11 #define _EFI_UHCI_DEBUG_H_
12
13
14 /**
15 Dump the content of QH structure.
16
17 @param QhSw Pointer to software QH structure.
18
19 @return None.
20
21 **/
22 VOID
23 UhciDumpQh (
24 IN UHCI_QH_SW *QhSw
25 );
26
27
28 /**
29 Dump the content of TD structure.
30
31 @param TdSw Pointer to software TD structure.
32
33 @return None.
34
35 **/
36 VOID
37 UhciDumpTds (
38 IN UHCI_TD_SW *TdSw
39 );
40
41 #endif