[haiku-commits] haiku: hrev50204 - in src/add-ons/kernel/bluetooth: btCoreData hci

  • From: kallisti5@xxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sun, 10 Apr 2016 04:27:34 +0200 (CEST)

hrev50204 adds 2 changesets to branch 'master'
old head: 13afb4fb371300f0fe531a2536ec0ac98ae12c43
new head: 837845c53defd739153900f04e1bfcb4dd20435f
overview: 
http://cgit.haiku-os.org/haiku/log/?qt=range&q=837845c53def+%5E13afb4fb3713

----------------------------------------------------------------------------

ebffd5b138fa: bluetooth/btCoreData: Add missing api_version

837845c53def: bluetooth/hci: Add missing api_version

                          [ Alexander von Gluck IV <kallisti5@xxxxxxxxxxx> ]

----------------------------------------------------------------------------

2 files changed, 7 insertions(+)
src/add-ons/kernel/bluetooth/btCoreData/BTCoreData.cpp | 4 ++++
src/add-ons/kernel/bluetooth/hci/bluetooth.cpp         | 3 +++

############################################################################

Commit:      ebffd5b138fa212a6adeb008fe3174d35fdb4507
URL:         http://cgit.haiku-os.org/haiku/commit/?id=ebffd5b138fa
Author:      Alexander von Gluck IV <kallisti5@xxxxxxxxxxx>
Date:        Sun Apr 10 02:34:29 2016 UTC

bluetooth/btCoreData: Add missing api_version

----------------------------------------------------------------------------

diff --git a/src/add-ons/kernel/bluetooth/btCoreData/BTCoreData.cpp 
b/src/add-ons/kernel/bluetooth/btCoreData/BTCoreData.cpp
index accbda1..e7bcacd 100644
--- a/src/add-ons/kernel/bluetooth/btCoreData/BTCoreData.cpp
+++ b/src/add-ons/kernel/bluetooth/btCoreData/BTCoreData.cpp
@@ -14,6 +14,10 @@
 #define BT_DEBUG_THIS_MODULE
 #include <btDebug.h>
 
+
+int32 api_version = B_CUR_DRIVER_API_VERSION;
+
+
 DoublyLinkedList<HciConnection> sConnectionList;
 net_buffer_module_info* gBufferModule = NULL;
 

############################################################################

Revision:    hrev50204
Commit:      837845c53defd739153900f04e1bfcb4dd20435f
URL:         http://cgit.haiku-os.org/haiku/commit/?id=837845c53def
Author:      Alexander von Gluck IV <kallisti5@xxxxxxxxxxx>
Date:        Sun Apr 10 02:34:52 2016 UTC

bluetooth/hci: Add missing api_version

----------------------------------------------------------------------------

diff --git a/src/add-ons/kernel/bluetooth/hci/bluetooth.cpp 
b/src/add-ons/kernel/bluetooth/hci/bluetooth.cpp
index e47097b..f233d2e 100644
--- a/src/add-ons/kernel/bluetooth/hci/bluetooth.cpp
+++ b/src/add-ons/kernel/bluetooth/hci/bluetooth.cpp
@@ -44,6 +44,9 @@
 #include "acl.h"
 
 
+int32 api_version = B_CUR_DRIVER_API_VERSION;
+
+
 typedef PortListener<void,
        HCI_MAX_FRAME_SIZE, // Event Body can hold max 255 + 2 header
        24                                      // Some devices have sent 
chunks of 24 events(inquiry result)


Other related posts:

  • » [haiku-commits] haiku: hrev50204 - in src/add-ons/kernel/bluetooth: btCoreData hci - kallisti5