mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 02:15:47 +00:00
[FDC]
Silence some debug prints svn path=/trunk/; revision=62220
This commit is contained in:
parent
a397188a14
commit
dd95846a87
1 changed files with 6 additions and 6 deletions
|
@ -30,7 +30,7 @@ FdcAddDevice(
|
||||||
PDEVICE_OBJECT Fdo = NULL;
|
PDEVICE_OBJECT Fdo = NULL;
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
|
|
||||||
DPRINT1("FdcAddDevice()\n");
|
DPRINT("FdcAddDevice()\n");
|
||||||
|
|
||||||
ASSERT(DriverObject);
|
ASSERT(DriverObject);
|
||||||
ASSERT(Pdo);
|
ASSERT(Pdo);
|
||||||
|
@ -87,7 +87,7 @@ NTAPI
|
||||||
FdcCreate(IN PDEVICE_OBJECT DeviceObject,
|
FdcCreate(IN PDEVICE_OBJECT DeviceObject,
|
||||||
IN PIRP Irp)
|
IN PIRP Irp)
|
||||||
{
|
{
|
||||||
DPRINT1("FdcCreate()\n");
|
DPRINT("FdcCreate()\n");
|
||||||
|
|
||||||
Irp->IoStatus.Status = STATUS_SUCCESS;
|
Irp->IoStatus.Status = STATUS_SUCCESS;
|
||||||
Irp->IoStatus.Information = FILE_OPENED;
|
Irp->IoStatus.Information = FILE_OPENED;
|
||||||
|
@ -104,7 +104,7 @@ NTAPI
|
||||||
FdcClose(IN PDEVICE_OBJECT DeviceObject,
|
FdcClose(IN PDEVICE_OBJECT DeviceObject,
|
||||||
IN PIRP Irp)
|
IN PIRP Irp)
|
||||||
{
|
{
|
||||||
DPRINT1("FdcClose()\n");
|
DPRINT("FdcClose()\n");
|
||||||
|
|
||||||
Irp->IoStatus.Status = STATUS_SUCCESS;
|
Irp->IoStatus.Status = STATUS_SUCCESS;
|
||||||
Irp->IoStatus.Information = 0;
|
Irp->IoStatus.Information = 0;
|
||||||
|
@ -123,7 +123,7 @@ FdcPnp(IN PDEVICE_OBJECT DeviceObject,
|
||||||
{
|
{
|
||||||
PCOMMON_DEVICE_EXTENSION Common = DeviceObject->DeviceExtension;
|
PCOMMON_DEVICE_EXTENSION Common = DeviceObject->DeviceExtension;
|
||||||
|
|
||||||
DPRINT1("FdcPnP()\n");
|
DPRINT("FdcPnP()\n");
|
||||||
if (Common->IsFDO)
|
if (Common->IsFDO)
|
||||||
{
|
{
|
||||||
return FdcFdoPnp(DeviceObject,
|
return FdcFdoPnp(DeviceObject,
|
||||||
|
@ -143,7 +143,7 @@ NTAPI
|
||||||
FdcPower(IN PDEVICE_OBJECT DeviceObject,
|
FdcPower(IN PDEVICE_OBJECT DeviceObject,
|
||||||
IN PIRP Irp)
|
IN PIRP Irp)
|
||||||
{
|
{
|
||||||
DPRINT1("FdcPower()\n");
|
DPRINT("FdcPower()\n");
|
||||||
return STATUS_UNSUCCESSFUL;
|
return STATUS_UNSUCCESSFUL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -153,7 +153,7 @@ NTAPI
|
||||||
DriverEntry(IN PDRIVER_OBJECT DriverObject,
|
DriverEntry(IN PDRIVER_OBJECT DriverObject,
|
||||||
IN PUNICODE_STRING RegistryPath)
|
IN PUNICODE_STRING RegistryPath)
|
||||||
{
|
{
|
||||||
DPRINT1("FDC: DriverEntry()\n");
|
DPRINT("FDC: DriverEntry()\n");
|
||||||
|
|
||||||
DriverObject->MajorFunction[IRP_MJ_CREATE] = FdcCreate;
|
DriverObject->MajorFunction[IRP_MJ_CREATE] = FdcCreate;
|
||||||
DriverObject->MajorFunction[IRP_MJ_CLOSE] = FdcClose;
|
DriverObject->MajorFunction[IRP_MJ_CLOSE] = FdcClose;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue