From 8bd7491914395c4203ee938303a4c5fa672579a0 Mon Sep 17 00:00:00 2001 From: Oliver Ruiz Dorantes Date: Tue, 5 Aug 2008 22:12:24 +0000 Subject: [PATCH] Commit the file i forgot yesterday (ioctl change and cleanups) git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26831 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/os/bluetooth/HCI/btHCI_transport.h | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/headers/os/bluetooth/HCI/btHCI_transport.h b/headers/os/bluetooth/HCI/btHCI_transport.h index adca6e9344..b894bbbdcd 100644 --- a/headers/os/bluetooth/HCI/btHCI_transport.h +++ b/headers/os/bluetooth/HCI/btHCI_transport.h @@ -17,9 +17,8 @@ typedef enum { ANCILLYANT = (1<<0), PROCESSING = (1<<4) } bt_transport_status_t; -typedef uint8 bt_stat_t; +typedef uint8 bt_stat_t; typedef struct bt_hci_statistics { - bt_stat_t acceptedTX; bt_stat_t rejectedTX; bt_stat_t successfulTX; @@ -41,8 +40,6 @@ typedef struct bt_hci_statistics { bt_stat_t bytesRX; bt_stat_t bytesTX; - - } bt_hci_statistics; /* TODO: Possible hooks which drivers will have to provide */ @@ -59,10 +56,8 @@ typedef struct bt_hci_transport { } bt_hci_transport; typedef struct bt_hci_device { - transport_type kind; char realName[B_OS_NAME_LENGTH]; - } bt_hci_device; @@ -92,8 +87,8 @@ enum { #define GET_PORTCODE_HID(code) ((code&0x00FF0000)>>16) #define GET_PORTCODE_DATA(code) ((code&0x0000FFFF)) -/* Port drivers can use to send information (1 for all for - at moment refer to ioctl GET_NOTIFICATION_PORT)*/ +/* Port drivers can use to send information (1 for all for + at moment refer to ioctl GET_NOTIFICATION_PORT)*/ #define BT_USERLAND_PORT_NAME "BT kernel-user Land" #endif // _BTHCI_TRANSPORT_H_