Home | History | Annotate | Download | only in UhciDxe
      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 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   Dump the content of TD structure.
     36 
     37   @param  TdSw    Pointer to software TD structure.
     38 
     39   @return None.
     40 
     41 **/
     42 VOID
     43 UhciDumpTds (
     44   IN UHCI_TD_SW           *TdSw
     45   );
     46 
     47 #endif
     48