[NTOSKRNL] Add a first implementation of !handle command in KDBG
[reactos.git] / drivers / bus / isapnp / hardware.c
index 99e5d44..c578270 100644 (file)
@@ -4,6 +4,7 @@
  * PURPOSE:         Hardware support code
  * PROGRAMMERS:     Cameron Gutman (cameron.gutman@reactos.org)
  */
+
 #include <isapnp.h>
 #include <isapnphw.h>
 
@@ -319,7 +320,7 @@ TryIsolate(PUCHAR ReadDataPort)
   INT Csn = 0;
   USHORT Byte, Data;
 
-  DPRINT("Setting read data port: 0x%x\n", ReadDataPort);
+  DPRINT("Setting read data port: 0x%p\n", ReadDataPort);
 
   WaitForKey();
   SendKey();
@@ -408,7 +409,7 @@ TryIsolate(PUCHAR ReadDataPort)
 
   if (Csn > 0)
   {
-    DPRINT("Found %d cards at read port 0x%x\n", Csn, ReadDataPort);
+    DPRINT("Found %d cards at read port 0x%p\n", Csn, ReadDataPort);
   }
 
   return Csn;
@@ -543,7 +544,7 @@ IsaHwDetectReadDataPort(
       return STATUS_UNSUCCESSFUL;
   }
 
-  DPRINT1("Detected read data port at 0x%x\n", FdoExt->ReadDataPort);
+  DPRINT1("Detected read data port at 0x%p\n", FdoExt->ReadDataPort);
 
   return STATUS_SUCCESS;
 }