]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ALSA: hda-intel - fix wallclk variable update and condition
authorJaroslav Kysela <perex@perex.cz>
Wed, 2 Jun 2010 11:29:17 +0000 (13:29 +0200)
committerJaroslav Kysela <perex@perex.cz>
Wed, 2 Jun 2010 11:34:01 +0000 (13:34 +0200)
This patch fixes thinko introduced in "last minutes" before commiting
of the last wallclk patch.

It also fixes the condition checking if the first period after last
wallclk update is processed. There is a little rounding error in
period_wallclk.

Signed-off-by: Jaroslav Kysela <perex@perex.cz>
sound/pci/hda/hda_intel.c

index dc79564fea30d2e17fef0b9abfc51b0ec636c73f..af701a89468709722d929a4eebbb5482f75d17b0 100644 (file)
@@ -1913,11 +1913,11 @@ static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev)
        if (WARN_ONCE(!azx_dev->period_bytes,
                      "hda-intel: zero azx_dev->period_bytes"))
                return -1; /* this shouldn't happen! */
-       if (wallclk <= azx_dev->period_wallclk &&
+       if (wallclk < (azx_dev->period_wallclk * 5) / 4 &&
            pos % azx_dev->period_bytes > azx_dev->period_bytes / 2)
                /* NG - it's below the first next period boundary */
                return bdl_pos_adj[chip->dev_index] ? 0 : -1;
-       azx_dev->start_wallclk = wallclk;
+       azx_dev->start_wallclk += wallclk;
        return 1; /* OK, it's fine */
 }