From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KkV1z-00047w-7n for qemu-devel@nongnu.org; Mon, 29 Sep 2008 22:32:07 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KkV1x-00047L-MV for qemu-devel@nongnu.org; Mon, 29 Sep 2008 22:32:06 -0400 Received: from [199.232.76.173] (port=40347 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KkV1x-00047I-JB for qemu-devel@nongnu.org; Mon, 29 Sep 2008 22:32:05 -0400 Received: from rv-out-0708.google.com ([209.85.198.250]:63940) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KkV1w-0007P9-M3 for qemu-devel@nongnu.org; Mon, 29 Sep 2008 22:32:04 -0400 Received: by rv-out-0708.google.com with SMTP id f25so2133279rvb.22 for ; Mon, 29 Sep 2008 19:32:03 -0700 (PDT) Message-ID: Date: Tue, 30 Sep 2008 04:32:02 +0200 From: "andrzej zaborowski" Subject: Re: [Qemu-devel] [5345] Add a virtual HCI. In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: 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 2008/9/29 Blue Swirl : > On 9/29/08, Andrzej Zaborowski wrote: >> Revision: 5345 >> http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5345 >> Author: balrog >> Date: 2008-09-29 00:02:34 +0000 (Mon, 29 Sep 2008) > >> +void bt_submit_lmp(struct bt_device_s *bt, int length, uint8_t *data) >> +void bt_submit_raw_acl(struct bt_piconet_s *net, int length, uint8_t *data) >> +void bt_hci_done(struct HCIInfo *info) > > Forgot 'static'? Now added. I wanted to use bt_hci_done from other places but didn't need to in the end. bt_submit_raw_acl should not be static but I should probably remove all lmp stuff as no code in svn uses it, or move it to bt-lmp.c. Thanks