diff --git a/reactos/drivers/dd/ide/ide.c b/reactos/drivers/dd/ide/ide.c index 427800e8746..4736134c4b9 100644 --- a/reactos/drivers/dd/ide/ide.c +++ b/reactos/drivers/dd/ide/ide.c @@ -70,7 +70,7 @@ typedef DISK_GEOMETRY *PDISK_GEOMETRY; #include #include -#define NDEBUG +//#define NDEBUG #include #include "ide.h" @@ -793,7 +793,7 @@ IDEGetPartitionTable(IN int CommandPort, SectorBuf); if (RC != 0) { - DbgPrint("read failed: port %04x drive %d sector %d rc %d\n", + DPRINT("read failed: port %04x drive %d sector %d rc %d\n", CommandPort, DriveNum, Offset, @@ -802,7 +802,7 @@ IDEGetPartitionTable(IN int CommandPort, } else if (*((WORD *)(SectorBuf + PART_MAGIC_OFFSET)) != PARTITION_MAGIC) { - DbgPrint("Bad partition magic: port %04x drive %d offset %d magic %d\n", + DPRINT("Bad partition magic: port %04x drive %d offset %d magic %d\n", CommandPort, DriveNum, Offset, @@ -922,7 +922,6 @@ IDECreateDevice(IN PDRIVER_OBJECT DriverObject, { RtlInitAnsiString(&AnsiSymLink, Win32Alias); RtlAnsiStringToUnicodeString(&SymLink, &AnsiSymLink, TRUE); - DbgPrint("SymbolicLink (%w -> %w)\n",SymLink.Buffer,UnicodeName.Buffer); IoCreateSymbolicLink(&SymLink, &UnicodeName); RtlFreeUnicodeString(&SymLink); } diff --git a/reactos/drivers/dd/ide/makefile b/reactos/drivers/dd/ide/makefile index aaafa1ab1b8..371170e98c2 100644 --- a/reactos/drivers/dd/ide/makefile +++ b/reactos/drivers/dd/ide/makefile @@ -8,4 +8,4 @@ ide.o: ide.c ide.h idep.h partitio.h dummy: -include ../../../rules.mak +include ../../rules.mak