From: zzl <linuxmaker@163.com>
To: qemu-devel@nongnu.org
Cc: zzl <linuxmaker@163.com>
Subject: [PATCH] Resolves: https://gitlab.com/qemu-project/qemu/-/issues/542
Date: Sat, 12 Mar 2022 16:26:07 +0800 [thread overview]
Message-ID: <20220312082607.5974-1-linuxmaker@163.com> (raw)
---
hw/audio/intel-hda.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/audio/intel-hda.c b/hw/audio/intel-hda.c
index 5f8a878f20..ff32936cfd 100644
--- a/hw/audio/intel-hda.c
+++ b/hw/audio/intel-hda.c
@@ -328,7 +328,7 @@ static void intel_hda_corb_run(IntelHDAState *d)
dprint(d, 2, "%s: corb ring empty\n", __func__);
return;
}
- if (d->rirb_count == d->rirb_cnt) {
+ if (d->rirb_count >= d->rirb_cnt) {
dprint(d, 2, "%s: rirb count reached\n", __func__);
return;
}
--
2.32.0
next reply other threads:[~2022-03-12 8:43 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-12 8:26 zzl [this message]
2022-03-14 7:57 ` [PATCH] Resolves: https://gitlab.com/qemu-project/qemu/-/issues/542 Thomas Huth
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220312082607.5974-1-linuxmaker@163.com \
--to=linuxmaker@163.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).