Skip to content

Commit

Permalink
ASoC: twl6040: Remove strings "NULL" from DAPM route
Browse files Browse the repository at this point in the history
Replace the string with plain NULL.

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Acked-by: Liam Girdwood <lrg@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
  • Loading branch information
Peter Ujfalusi authored and Mark Brown committed Sep 22, 2011
1 parent 4548dc3 commit 5bf692d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sound/soc/codecs/twl6040.c
Original file line number Diff line number Diff line change
Expand Up @@ -1199,17 +1199,17 @@ static const struct snd_soc_dapm_route intercon[] = {
{"ADC Right", NULL, "MicAmpR"},

/* AFM path */
{"AFMAmpL", "NULL", "AFML"},
{"AFMAmpR", "NULL", "AFMR"},
{"AFMAmpL", NULL, "AFML"},
{"AFMAmpR", NULL, "AFMR"},

{"HS Left Playback", "HS DAC", "HSDAC Left"},
{"HS Left Playback", "Line-In amp", "AFMAmpL"},

{"HS Right Playback", "HS DAC", "HSDAC Right"},
{"HS Right Playback", "Line-In amp", "AFMAmpR"},

{"Headset Left Driver", "NULL", "HS Left Playback"},
{"Headset Right Driver", "NULL", "HS Right Playback"},
{"Headset Left Driver", NULL, "HS Left Playback"},
{"Headset Right Driver", NULL, "HS Right Playback"},

{"HSOL", NULL, "Headset Left Driver"},
{"HSOR", NULL, "Headset Right Driver"},
Expand Down

0 comments on commit 5bf692d

Please sign in to comment.