@@ -20,7 +20,7 @@ DAPM spans the whole machine. It covers power control within the entire
2020audio subsystem, this includes internal codec power blocks and machine
2121level power systems.
2222
23- There are 4 power domains within DAPM
23+ There are 4 power domains within DAPM:
2424
2525Codec bias domain
2626 VREF, VMID (core codec and audio power)
@@ -57,7 +57,7 @@ widgets hereafter.
5757DAPM Widgets
5858============
5959
60- Audio DAPM widgets fall into a number of types:-
60+ Audio DAPM widgets fall into a number of types:
6161
6262Mixer
6363 Mixes several analog signals into a single analog signal.
@@ -141,7 +141,7 @@ Stream Widgets relate to the stream power domain and only consist of ADCs
141141(analog to digital converters), DACs (digital to analog converters),
142142AIF IN and AIF OUT.
143143
144- Stream widgets have the following format:-
144+ Stream widgets have the following format:
145145::
146146
147147 SND_SOC_DAPM_DAC(name, stream name, reg, shift, invert),
@@ -167,7 +167,7 @@ Path Domain Widgets
167167-------------------
168168
169169Path domain widgets have a ability to control or affect the audio signal or
170- audio paths within the audio subsystem. They have the following form:-
170+ audio paths within the audio subsystem. They have the following form:
171171::
172172
173173 SND_SOC_DAPM_PGA(name, reg, shift, invert, controls, num_controls)
@@ -207,7 +207,7 @@ powered. e.g.
207207A machine widget can have an optional call back.
208208
209209e.g. Jack connector widget for an external Mic that enables Mic Bias
210- when the Mic is inserted:-: :
210+ when the Mic is inserted::
211211
212212 static int spitz_mic_bias(struct snd_soc_dapm_widget* w, int event)
213213 {
@@ -271,7 +271,7 @@ connect the destination widget (wrt audio signal) with its source widgets.
271271 {"Output Mixer", "HiFi Playback Switch", "DAC"},
272272 {"Output Mixer", "Mic Sidetone Switch", "Mic Bias"},
273273
274- So we have :-
274+ So we have :
275275
276276* Destination Widget <=== Path Name <=== Source Widget, or
277277* Sink, Path, Source, or
@@ -280,7 +280,7 @@ So we have :-
280280When there is no path name connecting widgets (e.g. a direct connection) we
281281pass NULL for the path name.
282282
283- Interconnections are created with a call to:-
283+ Interconnections are created with a call to:
284284::
285285
286286 snd_soc_dapm_connect_input(codec, sink, path, source);
0 commit comments