From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NYkIy-0003Sh-A9 for qemu-devel@nongnu.org; Sat, 23 Jan 2010 13:01:52 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NYkIs-0003Pr-2Y for qemu-devel@nongnu.org; Sat, 23 Jan 2010 13:01:51 -0500 Received: from [199.232.76.173] (port=44609 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NYk8q-000154-NQ for qemu-devel@nongnu.org; Sat, 23 Jan 2010 12:51:24 -0500 Received: from fmmailgate02.web.de ([217.72.192.227]:58966) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NYk8q-0003zq-7h for qemu-devel@nongnu.org; Sat, 23 Jan 2010 12:51:24 -0500 Message-ID: <4B5B371A.5030408@web.de> Date: Sat, 23 Jan 2010 18:51:22 +0100 From: Jan Kiszka MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig196BD266B53EEDB909D70AC3" Sender: jan.kiszka@web.de Subject: [Qemu-devel] [PATCH] Musicpal: Fix wm8750 I2C address List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: malc Cc: qemu-devel , ondrej drbohlav This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig196BD266B53EEDB909D70AC3 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: quoted-printable Commit b3a219883e uncovered that we attached the Wolfson with an I2C address shifted left by one. Fixing this makes sound work again for the Musicpal. Signed-off-by: Jan Kiszka --- hw/musicpal.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/musicpal.c b/hw/musicpal.c index 4a33e28..e424a7d 100644 --- a/hw/musicpal.c +++ b/hw/musicpal.c @@ -67,7 +67,7 @@ #define MP_AUDIO_IRQ 30 =20 /* Wolfson 8750 I2C address */ -#define MP_WM_ADDR 0x34 +#define MP_WM_ADDR 0x1A =20 /* Ethernet register offsets */ #define MP_ETH_SMIR 0x010 --------------enig196BD266B53EEDB909D70AC3 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (GNU/Linux) Comment: Using GnuPG with SUSE - http://enigmail.mozdev.org iEYEARECAAYFAktbNxoACgkQitSsb3rl5xRe4ACdFZ+aSsZ/se88ljtlMCcFbYfn 83sAoNDc8SM/7YKy1aPnTIIs60AuusTp =HBEg -----END PGP SIGNATURE----- --------------enig196BD266B53EEDB909D70AC3--