Comment 35 for bug 1313904

Revision history for this message
Kiril (kiril-mik-os) wrote :

Done:
int snd_hda_get_sub_nodes(struct hda_codec *codec, hda_nid_t nid,
     hda_nid_t *start_id)
{
 unsigned int parm;

 parm = snd_hda_param_read(codec, nid, AC_PAR_NODE_COUNT);
 if (parm == -1)
  return 0;
 *start_id = (parm >> 16) & 0x7fff;
 if (codec->vendor_id == 0x11068446)
  return 55;
 return (int)(parm & 0x7fff);
}

Here is new alsa-info with 0x3e: http://www.alsa-project.org/db/?f=7c253b9d2d1dbec0d060a43e074fc9190150db3f

But after suspend/resume there are still no sound in headphone jack.