From patchwork Thu Mar 1 14:28:01 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Marc-Andr=C3=A9_Lureau?= X-Patchwork-Id: 144027 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 5D6DF1007D7 for ; Fri, 2 Mar 2012 01:29:31 +1100 (EST) Received: from localhost ([::1]:39012 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S370a-0008Dy-Pc for incoming@patchwork.ozlabs.org; Thu, 01 Mar 2012 09:29:28 -0500 Received: from eggs.gnu.org ([208.118.235.92]:39407) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S370G-0007s9-QI for qemu-devel@nongnu.org; Thu, 01 Mar 2012 09:29:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S370A-0005tN-CJ for qemu-devel@nongnu.org; Thu, 01 Mar 2012 09:29:08 -0500 Received: from mail-ey0-f173.google.com ([209.85.215.173]:55379) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S370A-0005nd-21 for qemu-devel@nongnu.org; Thu, 01 Mar 2012 09:29:02 -0500 Received: by mail-ey0-f173.google.com with SMTP id n13so263499eaa.4 for ; Thu, 01 Mar 2012 06:29:01 -0800 (PST) Received-SPF: pass (google.com: domain of marcandre.lureau@gmail.com designates 10.14.120.209 as permitted sender) client-ip=10.14.120.209; Authentication-Results: mr.google.com; spf=pass (google.com: domain of marcandre.lureau@gmail.com designates 10.14.120.209 as permitted sender) smtp.mail=marcandre.lureau@gmail.com; dkim=pass header.i=marcandre.lureau@gmail.com Received: from mr.google.com ([10.14.120.209]) by 10.14.120.209 with SMTP id p57mr3142900eeh.55.1330612141256 (num_hops = 1); Thu, 01 Mar 2012 06:29:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :in-reply-to:references; bh=7Diq0Bdu8BWpfuR5yQnr54muRt0Atn8w7H/kR9vkF10=; b=V8oxFMt3TpIWzsPNzAe9SIVhVk6VO2P7XOXsR3CyviL6mlU1kmLBFqO7TTx7Ourmvz 2YVfWji08lVUxv9zgkPb6lAjkZC8pFmp0KT1YP9IvglKOEDqDAwmgujJ9rvCMyPJaG2z 28+cCrr0IUjZFAcQb7Jn2KZU460XXFRahmvHQ= Received: by 10.14.120.209 with SMTP id p57mr2416339eeh.55.1330612141204; Thu, 01 Mar 2012 06:29:01 -0800 (PST) Received: from localhost (84.216.13.109.rev.sfr.net. [109.13.216.84]) by mx.google.com with ESMTPS id i10sm7839757eea.8.2012.03.01.06.28.58 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 01 Mar 2012 06:28:59 -0800 (PST) From: "=?UTF-8?q?Marc-Andr=C3=A9=20Lureau?=" To: qemu-devel@nongnu.org Date: Thu, 1 Mar 2012 15:28:01 +0100 Message-Id: <1330612087-1882-6-git-send-email-marcandre.lureau@redhat.com> X-Mailer: git-send-email 1.7.7.6 In-Reply-To: <1330612087-1882-1-git-send-email-marcandre.lureau@redhat.com> References: <1330612087-1882-1-git-send-email-marcandre.lureau@redhat.com> In-Reply-To: <1316621468-32171-1-git-send-email-marcandre.lureau@redhat.com> References: <1316621468-32171-1-git-send-email-marcandre.lureau@redhat.com> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.215.173 Cc: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= , kraxel@redhat.com Subject: [Qemu-devel] [PATCH 05/11] hw/ac97: the volume mask was not always 0x1f X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org It's a case by case, which will be added appropriately. --- hw/ac97.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/hw/ac97.c b/hw/ac97.c index f2804e6..f7866ed 100644 --- a/hw/ac97.c +++ b/hw/ac97.c @@ -118,7 +118,6 @@ enum { #define EACS_VRA 1 #define EACS_VRM 8 -#define VOL_MASK 0x1f #define MUTE_SHIFT 15 #define REC_MASK 7