@@ -20,7 +20,7 @@ DAPM spans the whole machine. It covers power control within the entire
20
20
audio subsystem, this includes internal codec power blocks and machine
21
21
level power systems.
22
22
23
- There are 4 power domains within DAPM
23
+ There are 4 power domains within DAPM:
24
24
25
25
Codec bias domain
26
26
VREF, VMID (core codec and audio power)
@@ -57,7 +57,7 @@ widgets hereafter.
57
57
DAPM Widgets
58
58
============
59
59
60
- Audio DAPM widgets fall into a number of types:-
60
+ Audio DAPM widgets fall into a number of types:
61
61
62
62
Mixer
63
63
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
141
141
(analog to digital converters), DACs (digital to analog converters),
142
142
AIF IN and AIF OUT.
143
143
144
- Stream widgets have the following format:-
144
+ Stream widgets have the following format:
145
145
::
146
146
147
147
SND_SOC_DAPM_DAC(name, stream name, reg, shift, invert),
@@ -167,7 +167,7 @@ Path Domain Widgets
167
167
-------------------
168
168
169
169
Path 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:
171
171
::
172
172
173
173
SND_SOC_DAPM_PGA(name, reg, shift, invert, controls, num_controls)
@@ -207,7 +207,7 @@ powered. e.g.
207
207
A machine widget can have an optional call back.
208
208
209
209
e.g. Jack connector widget for an external Mic that enables Mic Bias
210
- when the Mic is inserted:-: :
210
+ when the Mic is inserted::
211
211
212
212
static int spitz_mic_bias(struct snd_soc_dapm_widget* w, int event)
213
213
{
@@ -271,7 +271,7 @@ connect the destination widget (wrt audio signal) with its source widgets.
271
271
{"Output Mixer", "HiFi Playback Switch", "DAC"},
272
272
{"Output Mixer", "Mic Sidetone Switch", "Mic Bias"},
273
273
274
- So we have :-
274
+ So we have :
275
275
276
276
* Destination Widget <=== Path Name <=== Source Widget, or
277
277
* Sink, Path, Source, or
@@ -280,7 +280,7 @@ So we have :-
280
280
When there is no path name connecting widgets (e.g. a direct connection) we
281
281
pass NULL for the path name.
282
282
283
- Interconnections are created with a call to:-
283
+ Interconnections are created with a call to:
284
284
::
285
285
286
286
snd_soc_dapm_connect_input(codec, sink, path, source);
0 commit comments