diff options
author | Liam Girdwood <lg@opensource.wolfsonmicro.com> | 2007-02-08 11:06:09 -0500 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2007-02-09 03:04:04 -0500 |
commit | 10b98527c34dca3f461256f5fcfff9b3790066e0 (patch) | |
tree | 46d527ff67416b6403968176edf1f86281e9725c /Documentation/sound/alsa/soc/machine.txt | |
parent | c6d6eeeacc2ed0b736f20692ca021324f3b203b3 (diff) |
[ALSA] ASoC documentation updates
This patch updates the documentation for ASoC to reflect the recent
changes in API between 0.12.x and 0.13.x
Changes:-
o Removed all reference to old API's.
o Removed references and examples of automatic DAI config and matching.
o Fixed 80 char line length on some files.
Signed-off-by: Liam Girdwood <lg@opensource.wolfsonmicro.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'Documentation/sound/alsa/soc/machine.txt')
-rw-r--r-- | Documentation/sound/alsa/soc/machine.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Documentation/sound/alsa/soc/machine.txt b/Documentation/sound/alsa/soc/machine.txt index 3014795b1733..72bd222f2a21 100644 --- a/Documentation/sound/alsa/soc/machine.txt +++ b/Documentation/sound/alsa/soc/machine.txt | |||
@@ -64,7 +64,7 @@ static struct snd_soc_dai_link corgi_dai = { | |||
64 | .cpu_dai = &pxa_i2s_dai, | 64 | .cpu_dai = &pxa_i2s_dai, |
65 | .codec_dai = &wm8731_dai, | 65 | .codec_dai = &wm8731_dai, |
66 | .init = corgi_wm8731_init, | 66 | .init = corgi_wm8731_init, |
67 | .config_sysclk = corgi_config_sysclk, | 67 | .ops = &corgi_ops, |
68 | }; | 68 | }; |
69 | 69 | ||
70 | struct snd_soc_machine then sets up the machine with it's DAI's. e.g. | 70 | struct snd_soc_machine then sets up the machine with it's DAI's. e.g. |
@@ -74,7 +74,6 @@ static struct snd_soc_machine snd_soc_machine_corgi = { | |||
74 | .name = "Corgi", | 74 | .name = "Corgi", |
75 | .dai_link = &corgi_dai, | 75 | .dai_link = &corgi_dai, |
76 | .num_links = 1, | 76 | .num_links = 1, |
77 | .ops = &corgi_ops, | ||
78 | }; | 77 | }; |
79 | 78 | ||
80 | 79 | ||