From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LDIlZ-0001HP-EM for qemu-devel@nongnu.org; Thu, 18 Dec 2008 08:18:13 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LDIlY-0001Gc-Ti for qemu-devel@nongnu.org; Thu, 18 Dec 2008 08:18:13 -0500 Received: from [199.232.76.173] (port=37505 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LDIlY-0001GW-PX for qemu-devel@nongnu.org; Thu, 18 Dec 2008 08:18:12 -0500 Received: from gecko.sbs.de ([194.138.37.40]:15905) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LDIlY-0007kh-AT for qemu-devel@nongnu.org; Thu, 18 Dec 2008 08:18:12 -0500 Received: from mail1.sbs.de (localhost [127.0.0.1]) by gecko.sbs.de (8.12.11.20060308/8.12.11) with ESMTP id mBIDIAWW008165 for ; Thu, 18 Dec 2008 14:18:10 +0100 Received: from [139.25.109.167] (mchn012c.ww002.siemens.net [139.25.109.167] (may be forged)) by mail1.sbs.de (8.12.11.20060308/8.12.11) with ESMTP id mBIDIAbD029735 for ; Thu, 18 Dec 2008 14:18:10 +0100 Message-ID: <494A4D76.3020800@siemens.com> Date: Thu, 18 Dec 2008 14:17:42 +0100 From: Jan Kiszka MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH] Add bt_host_hci prototype Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Silence compiler warning by providing a prototype in the CONFIG_BLUEZ case (hw/bt.h provides it otherwise). Signed-off-by: Jan Kiszka --- bt-host.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/bt-host.c b/bt-host.c index 3c7b270..6ab945d 100644 --- a/bt-host.c +++ b/bt-host.c @@ -32,6 +32,8 @@ # include # include # include +/* Silence compiler warning */ +struct HCIInfo *bt_host_hci(const char *id); # else # include "hw/bt.h" # define HCI_MAX_FRAME_SIZE 1028