Remove extra semicolon.

Submitted by:	emaste
This commit is contained in:
Alexander Motin 2012-02-05 16:41:06 +00:00
parent 179e996c9f
commit 2345f2a366
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=231024

View file

@ -612,7 +612,7 @@ hdacc_stream_intr(device_t dev, int dir, int stream)
struct hdacc_softc *codec = device_get_softc(dev);
device_t child;
if ((child = codec->streams[dir][stream]) != NULL);
if ((child = codec->streams[dir][stream]) != NULL)
HDAC_STREAM_INTR(child, dir, stream);
}