aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/ath6kl/include/hci_transport_api.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/ath6kl/include/hci_transport_api.h')
-rw-r--r--drivers/staging/ath6kl/include/hci_transport_api.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/ath6kl/include/hci_transport_api.h b/drivers/staging/ath6kl/include/hci_transport_api.h
index 8ab692db6cf..7fa44f0e12a 100644
--- a/drivers/staging/ath6kl/include/hci_transport_api.h
+++ b/drivers/staging/ath6kl/include/hci_transport_api.h
@@ -85,7 +85,7 @@ typedef struct {
85 int IOBlockPad; /* I/O block padding required (always a power of 2) */ 85 int IOBlockPad; /* I/O block padding required (always a power of 2) */
86} HCI_TRANSPORT_PROPERTIES; 86} HCI_TRANSPORT_PROPERTIES;
87 87
88typedef struct _HCI_TRANSPORT_CONFIG_INFO { 88struct hci_transport_config_info {
89 int ACLRecvBufferWaterMark; /* low watermark to trigger recv refill */ 89 int ACLRecvBufferWaterMark; /* low watermark to trigger recv refill */
90 int EventRecvBufferWaterMark; /* low watermark to trigger recv refill */ 90 int EventRecvBufferWaterMark; /* low watermark to trigger recv refill */
91 int MaxSendQueueDepth; /* max number of packets in the single send queue */ 91 int MaxSendQueueDepth; /* max number of packets in the single send queue */
@@ -99,7 +99,7 @@ typedef struct _HCI_TRANSPORT_CONFIG_INFO {
99 HCI_TRANSPORT_RECV_REFILL pHCIPktRecvRefill; 99 HCI_TRANSPORT_RECV_REFILL pHCIPktRecvRefill;
100 HCI_TRANSPORT_RECV_ALLOC pHCIPktRecvAlloc; 100 HCI_TRANSPORT_RECV_ALLOC pHCIPktRecvAlloc;
101 HCI_TRANSPORT_SEND_FULL pHCISendFull; 101 HCI_TRANSPORT_SEND_FULL pHCISendFull;
102} HCI_TRANSPORT_CONFIG_INFO; 102};
103 103
104/* ------ Function Prototypes ------ */ 104/* ------ Function Prototypes ------ */
105/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 105/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
@@ -113,7 +113,7 @@ typedef struct _HCI_TRANSPORT_CONFIG_INFO {
113 @example: 113 @example:
114 @see also: HCI_TransportDetach 114 @see also: HCI_TransportDetach
115+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ 115+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
116HCI_TRANSPORT_HANDLE HCI_TransportAttach(void *HTCHandle, HCI_TRANSPORT_CONFIG_INFO *pInfo); 116HCI_TRANSPORT_HANDLE HCI_TransportAttach(void *HTCHandle, struct hci_transport_config_info *pInfo);
117 117
118/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 118/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
119 @desc: Detach from the HCI transport module 119 @desc: Detach from the HCI transport module