From patchwork Thu Nov 7 11:32:26 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 289301 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 853182C0086 for ; Thu, 7 Nov 2013 22:34:38 +1100 (EST) Received: from localhost ([::1]:39743 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VeNrA-0002W6-1V for incoming@patchwork.ozlabs.org; Thu, 07 Nov 2013 06:34:36 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57328) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VeNqQ-0002Gy-8X for qemu-devel@nongnu.org; Thu, 07 Nov 2013 06:33:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VeNqK-0007AJ-9l for qemu-devel@nongnu.org; Thu, 07 Nov 2013 06:33:50 -0500 Received: from mx1.redhat.com ([209.132.183.28]:42663) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VeNqK-0007AE-25 for qemu-devel@nongnu.org; Thu, 07 Nov 2013 06:33:44 -0500 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id rA7BWdRV015367 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 7 Nov 2013 06:32:40 -0500 Received: from nilsson.home.kraxel.org (dhcp-160-178.ber.redhat.com [10.32.160.178]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id rA7BWcF3003804; Thu, 7 Nov 2013 06:32:38 -0500 Received: by nilsson.home.kraxel.org (Postfix, from userid 500) id EF1F08045E; Thu, 7 Nov 2013 12:32:37 +0100 (CET) From: Gerd Hoffmann To: qemu-devel@nongnu.org Date: Thu, 7 Nov 2013 12:32:26 +0100 Message-Id: <1383823947-5132-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1383823947-5132-1-git-send-email-kraxel@redhat.com> References: <1383823947-5132-1-git-send-email-kraxel@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: "Vassili Karpov \(malc\)" , Gerd Hoffmann , Anthony Liguori Subject: [Qemu-devel] [PATCH 1/2] Revert "ossaudio: do not enable by default" 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 This reverts commit c905c5012ac0c6fde3b8094d2206a3139deddba2. There is a better fix for the issue at hand. Signed-off-by: Gerd Hoffmann --- audio/ossaudio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/ossaudio.c b/audio/ossaudio.c index 3e04a58..007c641 100644 --- a/audio/ossaudio.c +++ b/audio/ossaudio.c @@ -932,7 +932,7 @@ struct audio_driver oss_audio_driver = { .init = oss_audio_init, .fini = oss_audio_fini, .pcm_ops = &oss_pcm_ops, - .can_be_default = 0, + .can_be_default = 1, .max_voices_out = INT_MAX, .max_voices_in = INT_MAX, .voice_size_out = sizeof (OSSVoiceOut),