View | Details | Raw Unified | Return to bug 125756
Collapse All | Expand All

(-)./sys/dev/sound/pci/hda/hdac.c (-2 / +5 lines)
Lines 1813-1820 Link Here
1813
			codec->sc = sc;
1813
			codec->sc = sc;
1814
			codec->cad = i;
1814
			codec->cad = i;
1815
			sc->codecs[i] = codec;
1815
			sc->codecs[i] = codec;
1816
			if (hdac_probe_codec(codec) != 0)
1816
		//	if (hdac_probe_codec(codec) != 0)
1817
				break;
1817
		//		break;
1818
			hdac_probe_codec(codec);
1818
		}
1819
		}
1819
	}
1820
	}
1820
	/* All codecs have been probed, now try to attach drivers to them */
1821
	/* All codecs have been probed, now try to attach drivers to them */
Lines 1855-1860 Link Here
1855
	HDA_BOOTVERBOSE(
1856
	HDA_BOOTVERBOSE(
1856
		device_printf(sc->dev, "HDA_DEBUG: \tstartnode=%d endnode=%d\n",
1857
		device_printf(sc->dev, "HDA_DEBUG: \tstartnode=%d endnode=%d\n",
1857
		    startnode, endnode);
1858
		    startnode, endnode);
1859
			device_printf(sc->dev, "	Vendor: 0x%08x\n",
1860
			vendorid);
1858
	);
1861
	);
1859
	for (i = startnode; i < endnode; i++) {
1862
	for (i = startnode; i < endnode; i++) {
1860
		devinfo = hdac_probe_function(codec, i);
1863
		devinfo = hdac_probe_function(codec, i);

Return to bug 125756