Silence for Christoph & buildbot

svn path=/trunk/; revision=44137
This commit is contained in:
Johannes Anderwald 2009-11-13 15:08:00 +00:00
parent 17dd5fb45c
commit 165c423eed
3 changed files with 6 additions and 6 deletions

View file

@ -67,7 +67,7 @@ DispatchCreateSysAudio(
KSOBJECT_HEADER ObjectHeader;
PKSOBJECT_CREATE_ITEM CreateItem;
DPRINT1("DispatchCreateSysAudio entered\n");
DPRINT("DispatchCreateSysAudio entered\n");
/* allocate create item */
CreateItem = ExAllocatePool(NonPagedPool, sizeof(KSOBJECT_CREATE_ITEM));
@ -89,7 +89,7 @@ DispatchCreateSysAudio(
/* allocate object header */
Status = KsAllocateObjectHeader(&ObjectHeader, 1, CreateItem, Irp, &DispatchTable);
DPRINT1("KsAllocateObjectHeader result %x\n", Status);
DPRINT("KsAllocateObjectHeader result %x\n", Status);
/* complete the irp */
Irp->IoStatus.Information = 0;
Irp->IoStatus.Status = Status;

View file

@ -37,7 +37,7 @@ SysAudio_Shutdown(
PSYSAUDIODEVEXT DeviceExtension;
PLIST_ENTRY Entry;
DPRINT1("SysAudio_Shutdown called\n");
DPRINT("SysAudio_Shutdown called\n");
DeviceExtension = (PSYSAUDIODEVEXT)DeviceObject->DeviceExtension;
@ -46,7 +46,7 @@ SysAudio_Shutdown(
Entry = RemoveHeadList(&DeviceExtension->KsAudioDeviceList);
DeviceEntry = (PKSAUDIO_DEVICE_ENTRY)CONTAINING_RECORD(Entry, KSAUDIO_DEVICE_ENTRY, Entry);
DPRINT1("Freeing item %wZ\n", &DeviceEntry->DeviceName);
DPRINT("Freeing item %wZ\n", &DeviceEntry->DeviceName);
/* dereference audio device file object */
ObDereferenceObject(DeviceEntry->FileObject);
@ -149,7 +149,7 @@ SysAudio_InstallDevice(
if (!NT_SUCCESS(Status))
{
IoDeleteDevice(DeviceObject);
DPRINT("Failed to create sysaudio symlink!\n");
DPRINT1("Failed to create sysaudio symlink!\n");
return Status;
}
}

View file

@ -362,7 +362,7 @@ InstantiatePins(
DispatchContext->AudioEntry = DeviceEntry;
DPRINT1("RealPinHandle %p\n", RealPinHandle);
DPRINT("RealPinHandle %p\n", RealPinHandle);
/* Do we need to transform the audio stream */
if (OutputFormat != NULL)