]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Bus/Pci/UhciDxe/UhciDebug.c
MdeModulePkg: Apply uncrustify changes
[mirror_edk2.git] / MdeModulePkg / Bus / Pci / UhciDxe / UhciDebug.c
index 3d499c9baf1de25666e2ad4dbde3034d1bff0555..3dc27eff1a5806238dd7611de69b38c73af45e70 100644 (file)
@@ -17,7 +17,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
 **/\r
 VOID\r
 UhciDumpQh (\r
-  IN UHCI_QH_SW    *QhSw\r
+  IN UHCI_QH_SW  *QhSw\r
   )\r
 {\r
   DEBUG ((DEBUG_VERBOSE, "&QhSw @ 0x%p\n", QhSw));\r
@@ -28,7 +28,6 @@ UhciDumpQh (
   DEBUG ((DEBUG_VERBOSE, " Vertical Link - %x\n\n", QhSw->QhHw.VerticalLink));\r
 }\r
 \r
-\r
 /**\r
   Dump the content of TD structure.\r
 \r
@@ -37,33 +36,33 @@ UhciDumpQh (
 **/\r
 VOID\r
 UhciDumpTds (\r
-  IN UHCI_TD_SW           *TdSw\r
+  IN UHCI_TD_SW  *TdSw\r
   )\r
 {\r
-  UHCI_TD_SW              *CurTdSw;\r
+  UHCI_TD_SW  *CurTdSw;\r
 \r
   CurTdSw = TdSw;\r
 \r
   while (CurTdSw != NULL) {\r
-    DEBUG ((DEBUG_VERBOSE, "TdSw @ 0x%p\n",           CurTdSw));\r
-    DEBUG ((DEBUG_VERBOSE, "TdSw.NextTd   - 0x%p\n",  CurTdSw->NextTd));\r
-    DEBUG ((DEBUG_VERBOSE, "TdSw.DataLen  - %d\n",    CurTdSw->DataLen));\r
-    DEBUG ((DEBUG_VERBOSE, "TdSw.Data     - 0x%p\n",  CurTdSw->Data));\r
+    DEBUG ((DEBUG_VERBOSE, "TdSw @ 0x%p\n", CurTdSw));\r
+    DEBUG ((DEBUG_VERBOSE, "TdSw.NextTd   - 0x%p\n", CurTdSw->NextTd));\r
+    DEBUG ((DEBUG_VERBOSE, "TdSw.DataLen  - %d\n", CurTdSw->DataLen));\r
+    DEBUG ((DEBUG_VERBOSE, "TdSw.Data     - 0x%p\n", CurTdSw->Data));\r
     DEBUG ((DEBUG_VERBOSE, "TdHw:\n"));\r
-    DEBUG ((DEBUG_VERBOSE, " NextLink     - 0x%x\n",  CurTdSw->TdHw.NextLink));\r
-    DEBUG ((DEBUG_VERBOSE, " ActualLen    - %d\n",    CurTdSw->TdHw.ActualLen));\r
-    DEBUG ((DEBUG_VERBOSE, " Status       - 0x%x\n",  CurTdSw->TdHw.Status));\r
-    DEBUG ((DEBUG_VERBOSE, " IOC          - %d\n",    CurTdSw->TdHw.IntOnCpl));\r
-    DEBUG ((DEBUG_VERBOSE, " IsIsoCh      - %d\n",    CurTdSw->TdHw.IsIsoch));\r
-    DEBUG ((DEBUG_VERBOSE, " LowSpeed     - %d\n",    CurTdSw->TdHw.LowSpeed));\r
-    DEBUG ((DEBUG_VERBOSE, " ErrorCount   - %d\n",    CurTdSw->TdHw.ErrorCount));\r
-    DEBUG ((DEBUG_VERBOSE, " ShortPacket  - %d\n",    CurTdSw->TdHw.ShortPacket));\r
-    DEBUG ((DEBUG_VERBOSE, " PidCode      - 0x%x\n",  CurTdSw->TdHw.PidCode));\r
-    DEBUG ((DEBUG_VERBOSE, " DevAddr      - %d\n",    CurTdSw->TdHw.DeviceAddr));\r
-    DEBUG ((DEBUG_VERBOSE, " EndPoint     - %d\n",    CurTdSw->TdHw.EndPoint));\r
-    DEBUG ((DEBUG_VERBOSE, " DataToggle   - %d\n",    CurTdSw->TdHw.DataToggle));\r
-    DEBUG ((DEBUG_VERBOSE, " MaxPacketLen - %d\n",    CurTdSw->TdHw.MaxPacketLen));\r
-    DEBUG ((DEBUG_VERBOSE, " DataBuffer   - 0x%x\n\n",CurTdSw->TdHw.DataBuffer));\r
+    DEBUG ((DEBUG_VERBOSE, " NextLink     - 0x%x\n", CurTdSw->TdHw.NextLink));\r
+    DEBUG ((DEBUG_VERBOSE, " ActualLen    - %d\n", CurTdSw->TdHw.ActualLen));\r
+    DEBUG ((DEBUG_VERBOSE, " Status       - 0x%x\n", CurTdSw->TdHw.Status));\r
+    DEBUG ((DEBUG_VERBOSE, " IOC          - %d\n", CurTdSw->TdHw.IntOnCpl));\r
+    DEBUG ((DEBUG_VERBOSE, " IsIsoCh      - %d\n", CurTdSw->TdHw.IsIsoch));\r
+    DEBUG ((DEBUG_VERBOSE, " LowSpeed     - %d\n", CurTdSw->TdHw.LowSpeed));\r
+    DEBUG ((DEBUG_VERBOSE, " ErrorCount   - %d\n", CurTdSw->TdHw.ErrorCount));\r
+    DEBUG ((DEBUG_VERBOSE, " ShortPacket  - %d\n", CurTdSw->TdHw.ShortPacket));\r
+    DEBUG ((DEBUG_VERBOSE, " PidCode      - 0x%x\n", CurTdSw->TdHw.PidCode));\r
+    DEBUG ((DEBUG_VERBOSE, " DevAddr      - %d\n", CurTdSw->TdHw.DeviceAddr));\r
+    DEBUG ((DEBUG_VERBOSE, " EndPoint     - %d\n", CurTdSw->TdHw.EndPoint));\r
+    DEBUG ((DEBUG_VERBOSE, " DataToggle   - %d\n", CurTdSw->TdHw.DataToggle));\r
+    DEBUG ((DEBUG_VERBOSE, " MaxPacketLen - %d\n", CurTdSw->TdHw.MaxPacketLen));\r
+    DEBUG ((DEBUG_VERBOSE, " DataBuffer   - 0x%x\n\n", CurTdSw->TdHw.DataBuffer));\r
 \r
     CurTdSw = CurTdSw->NextTd;\r
   }\r