Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 27 Feb 2009 23:49:26 +0000 (UTC)
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r189127 - head/sys/dev/sound/pci/hda
Message-ID:  <200902272349.n1RNnQQR087166@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mav
Date: Fri Feb 27 23:49:26 2009
New Revision: 189127
URL: http://svn.freebsd.org/changeset/base/189127

Log:
  Copy/paste bug fix for previos commit.

Modified:
  head/sys/dev/sound/pci/hda/hdac.c

Modified: head/sys/dev/sound/pci/hda/hdac.c
==============================================================================
--- head/sys/dev/sound/pci/hda/hdac.c	Fri Feb 27 23:12:28 2009	(r189126)
+++ head/sys/dev/sound/pci/hda/hdac.c	Fri Feb 27 23:49:26 2009	(r189127)
@@ -4072,7 +4072,7 @@ hdac_attach(device_t dev)
 		);
 	}
 
-	if (devid >= 0 && (hdac_devices[i].flags & HDAC_NO_MSI))
+	if (devid >= 0 && (hdac_devices[devid].flags & HDAC_NO_MSI))
 		sc->flags &= ~HDAC_F_MSI;
 	else
 		sc->flags |= HDAC_F_MSI;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200902272349.n1RNnQQR087166>