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