mirror of
https://github.com/reactos/reactos.git
synced 2025-05-23 19:14:48 +00:00
[ramdisk]: improve again the dprints.
svn path=/trunk/; revision=66014
This commit is contained in:
parent
f3dfb65738
commit
7dbd809ef0
1 changed files with 4 additions and 4 deletions
|
@ -1473,7 +1473,7 @@ RamdiskDeviceControl(IN PDEVICE_OBJECT DeviceObject,
|
|||
//
|
||||
// We don't handle anything else yet
|
||||
//
|
||||
UNIMPLEMENTED_DBGBREAK("IOCTL: %lx\n", IoStackLocation->Parameters.DeviceIoControl.IoControlCode);
|
||||
UNIMPLEMENTED_DBGBREAK("FSCTL: 0x%lx is UNSUPPORTED!\n", IoStackLocation->Parameters.DeviceIoControl.IoControlCode);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1631,7 +1631,7 @@ RamdiskDeviceControl(IN PDEVICE_OBJECT DeviceObject,
|
|||
case IOCTL_VOLUME_GET_GPT_ATTRIBUTES:
|
||||
case IOCTL_VOLUME_OFFLINE:
|
||||
{
|
||||
UNIMPLEMENTED_DBGBREAK("IOCTL: %lx\n", IoStackLocation->Parameters.DeviceIoControl.IoControlCode);
|
||||
UNIMPLEMENTED_DBGBREAK("IOCTL: 0x%lx is UNIMPLEMENTED!\n", IoStackLocation->Parameters.DeviceIoControl.IoControlCode);
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -1640,7 +1640,7 @@ RamdiskDeviceControl(IN PDEVICE_OBJECT DeviceObject,
|
|||
//
|
||||
// Drive code not emulated
|
||||
//
|
||||
DPRINT1("IOCTL: %lx\n", IoStackLocation->Parameters.DeviceIoControl.IoControlCode);
|
||||
DPRINT1("IOCTL: 0x%lx is UNSUPPORTED!\n", IoStackLocation->Parameters.DeviceIoControl.IoControlCode);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -2952,7 +2952,7 @@ RamdiskAddDevice(IN PDRIVER_OBJECT DriverObject,
|
|||
// Are we being booted from setup? Not yet supported
|
||||
//
|
||||
if (KeLoaderBlock->SetupLdrBlock)
|
||||
DPRINT1("FIXME: RamdiskAddDevice unsupported when being started from SETUPLDR!\n");
|
||||
DPRINT1("FIXME: RamdiskAddDevice is UNSUPPORTED when being started from SETUPLDR!\n");
|
||||
// ASSERT(!KeLoaderBlock->SetupLdrBlock);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue