[FORMATTING][NTOS][HAL][DRIVERS][SDK] Fix trailing spaces

This commit is contained in:
Victor Perevertkin 2021-06-11 15:29:21 +03:00
parent 4b4ffa92f5
commit 34593d933b
No known key found for this signature in database
GPG key ID: C750B7222E9C7830
952 changed files with 12942 additions and 12942 deletions

View file

@ -191,7 +191,7 @@ CreateSoundDeviceInstance(
}
/* Set up the members of the structure */
(*SoundDeviceInstance)->Next = NULL;
(*SoundDeviceInstance)->Next = NULL;
(*SoundDeviceInstance)->Device = SoundDevice;
(*SoundDeviceInstance)->Handle = NULL;
(*SoundDeviceInstance)->Thread = NULL;

View file

@ -5,7 +5,7 @@
* PURPOSE: Mixer Control Iteration Functions
* PROGRAMMER: Johannes Anderwald
*/
#include "precomp.h"
#define YDEBUG
@ -1576,7 +1576,7 @@ MMixerInitializeFilter(
/* store mixer info */
*OutMixerInfo = MixerInfo;
/* now allocate an array which will receive the indices of the pin
/* now allocate an array which will receive the indices of the pin
* which has a ADC / DAC nodetype in its path
*/
Status = MMixerAllocateTopologyPinArray(MixerContext, Topology, &Pins);
@ -1624,7 +1624,7 @@ MMixerInitializeFilter(
}
/* now get the bridge pin which is at the end of node path
/* now get the bridge pin which is at the end of node path
* For sink pins (wave out) search down stream
* For source pins (wave in) search up stream
*/
@ -1886,7 +1886,7 @@ MMixerRemoveEvent(
IN PMIXER_EVENT MixerEventRoutine)
{
PLIST_ENTRY EventList;
PEVENT_NOTIFICATION_ENTRY NotificationEntry;
PEVENT_NOTIFICATION_ENTRY NotificationEntry;
/* Lookup through mixers */
EventList = MixerInfo->EventList.Flink;

View file

@ -203,7 +203,7 @@ MMixerGetControlTypeFromTopologyNode(
else if (IsEqualGUIDAligned(NodeType, (LPGUID)&KSNODETYPE_SUPERMIX))
{
/* supermix control
* MIXERCONTROL_CONTROLTYPE_MUTE if KSPROPERTY_AUDIO_MUTE is supported
* MIXERCONTROL_CONTROLTYPE_MUTE if KSPROPERTY_AUDIO_MUTE is supported
*/
UNIMPLEMENTED;
return MIXERCONTROL_CONTROLTYPE_VOLUME;

View file

@ -951,7 +951,7 @@ MMixerGetNextNodesFromPinIndex(
TopologyNodes = Pin->NodesConnectedFrom;
TopologyNodesCount = Pin->NodesConnectedFromCount;
}
else
else
{
/* get down stream nodes */
TopologyNodes = Pin->NodesConnectedTo;
@ -990,7 +990,7 @@ MMixerGetNextNodesFromNodeIndex(
TopologyNodes = Topology->TopologyNodes[NodeIndex].NodeConnectedFrom;
TopologyNodesCount = Topology->TopologyNodes[NodeIndex].NodeConnectedFromCount;
}
else
else
{
/* get down stream nodes */
TopologyNodes = Topology->TopologyNodes[NodeIndex].NodeConnectedTo;

View file

@ -148,4 +148,4 @@ SbDsp4SetInputRate(
return SbDsp4WriteRate(BasePort, Rate, Timeout);
}