diff options
| author | Puneeth Prabhu <puneethx.prabhu@intel.com> | 2017-12-06 16:34:05 +0530 | 
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2017-12-06 17:47:10 +0000 | 
| commit | 0fb02ba36d01a04dab03c0a424607844ef4dadbf (patch) | |
| tree | 4ac00915dab57e104c6e112bf89a52fa9fa78b73 | |
| parent | f0c5ebebacf3cc246e51e8814f5d4b22179f37bd (diff) | |
| download | talos-op-linux-0fb02ba36d01a04dab03c0a424607844ef4dadbf.tar.gz talos-op-linux-0fb02ba36d01a04dab03c0a424607844ef4dadbf.zip  | |
ASoC: hdac_hdmi: Refresh sysfs during hdmi device probe
All nodes of hdmi codec widgets are not updated in sysfs interface
(/sys/bus/hdaudio/devices/<dev>/widgets/) as the vendor widget is not
programmed to enable all the converters and pins during init. So,
refresh the sysfs widget interface after enabling all pins and
converters.
Signed-off-by: Puneeth Prabhu <puneethx.prabhu@intel.com>
Signed-off-by: Subhransu S. Prusty <subhransu.s.prusty@intel.com>
Signed-off-by: Guneshwor Singh <guneshwor.o.singh@intel.com>
Acked-By: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
| -rw-r--r-- | sound/soc/codecs/hdac_hdmi.c | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/codecs/hdac_hdmi.c b/sound/soc/codecs/hdac_hdmi.c index 3a35ede7027d..b706547c46d5 100644 --- a/sound/soc/codecs/hdac_hdmi.c +++ b/sound/soc/codecs/hdac_hdmi.c @@ -2042,6 +2042,7 @@ static int hdac_hdmi_dev_probe(struct hdac_ext_device *edev)  			"Failed in parse and map nid with err: %d\n", ret);  		return ret;  	} +	snd_hdac_refresh_widgets(hdev, true);  	/* ASoC specific initialization */  	ret = snd_soc_register_codec(&hdev->dev, &hdmi_hda_codec,  | 

