diff options
-rw-r--r-- | drivers/staging/ath6kl/htc2/htc.c | 2 | ||||
-rw-r--r-- | drivers/staging/ath6kl/htc2/htc_services.c | 2 | ||||
-rw-r--r-- | drivers/staging/ath6kl/include/htc_api.h | 6 | ||||
-rw-r--r-- | drivers/staging/ath6kl/os/linux/ar6000_drv.c | 2 | ||||
-rw-r--r-- | drivers/staging/ath6kl/os/linux/ar6000_raw_if.c | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/drivers/staging/ath6kl/htc2/htc.c b/drivers/staging/ath6kl/htc2/htc.c index 887a687b1392..b08fd828fc6a 100644 --- a/drivers/staging/ath6kl/htc2/htc.c +++ b/drivers/staging/ath6kl/htc2/htc.c | |||
@@ -230,7 +230,7 @@ int HTCWaitTarget(HTC_HANDLE HTCHandle) | |||
230 | HTC_READY_EX_MSG *pRdyMsg; | 230 | HTC_READY_EX_MSG *pRdyMsg; |
231 | 231 | ||
232 | struct htc_service_connect_req connect; | 232 | struct htc_service_connect_req connect; |
233 | HTC_SERVICE_CONNECT_RESP resp; | 233 | struct htc_service_connect_resp resp; |
234 | 234 | ||
235 | AR_DEBUG_PRINTF(ATH_DEBUG_TRC, ("HTCWaitTarget - Enter (target:0x%lX) \n", (unsigned long)target)); | 235 | AR_DEBUG_PRINTF(ATH_DEBUG_TRC, ("HTCWaitTarget - Enter (target:0x%lX) \n", (unsigned long)target)); |
236 | 236 | ||
diff --git a/drivers/staging/ath6kl/htc2/htc_services.c b/drivers/staging/ath6kl/htc2/htc_services.c index 5c092fd3f61a..d1f1c54e5b89 100644 --- a/drivers/staging/ath6kl/htc2/htc_services.c +++ b/drivers/staging/ath6kl/htc2/htc_services.c | |||
@@ -123,7 +123,7 @@ int HTCSendSetupComplete(HTC_TARGET *target) | |||
123 | 123 | ||
124 | int HTCConnectService(HTC_HANDLE HTCHandle, | 124 | int HTCConnectService(HTC_HANDLE HTCHandle, |
125 | struct htc_service_connect_req *pConnectReq, | 125 | struct htc_service_connect_req *pConnectReq, |
126 | HTC_SERVICE_CONNECT_RESP *pConnectResp) | 126 | struct htc_service_connect_resp *pConnectResp) |
127 | { | 127 | { |
128 | HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle); | 128 | HTC_TARGET *target = GET_HTC_TARGET_FROM_HANDLE(HTCHandle); |
129 | int status = 0; | 129 | int status = 0; |
diff --git a/drivers/staging/ath6kl/include/htc_api.h b/drivers/staging/ath6kl/include/htc_api.h index f8f00a0600a0..1bc2488788ab 100644 --- a/drivers/staging/ath6kl/include/htc_api.h +++ b/drivers/staging/ath6kl/include/htc_api.h | |||
@@ -153,14 +153,14 @@ struct htc_service_connect_req { | |||
153 | #define HTC_LOCAL_CONN_FLAGS_ENABLE_SEND_BUNDLE_PADDING (1 << 0) /* enable send bundle padding for this endpoint */ | 153 | #define HTC_LOCAL_CONN_FLAGS_ENABLE_SEND_BUNDLE_PADDING (1 << 0) /* enable send bundle padding for this endpoint */ |
154 | 154 | ||
155 | /* service connection response information */ | 155 | /* service connection response information */ |
156 | typedef struct _HTC_SERVICE_CONNECT_RESP { | 156 | struct htc_service_connect_resp { |
157 | u8 *pMetaData; /* caller supplied buffer to optional meta-data */ | 157 | u8 *pMetaData; /* caller supplied buffer to optional meta-data */ |
158 | u8 BufferLength; /* length of caller supplied buffer */ | 158 | u8 BufferLength; /* length of caller supplied buffer */ |
159 | u8 ActualLength; /* actual length of meta data */ | 159 | u8 ActualLength; /* actual length of meta data */ |
160 | HTC_ENDPOINT_ID Endpoint; /* endpoint to communicate over */ | 160 | HTC_ENDPOINT_ID Endpoint; /* endpoint to communicate over */ |
161 | unsigned int MaxMsgLength; /* max length of all messages over this endpoint */ | 161 | unsigned int MaxMsgLength; /* max length of all messages over this endpoint */ |
162 | u8 ConnectRespCode; /* connect response code from target */ | 162 | u8 ConnectRespCode; /* connect response code from target */ |
163 | } HTC_SERVICE_CONNECT_RESP; | 163 | }; |
164 | 164 | ||
165 | /* endpoint distribution structure */ | 165 | /* endpoint distribution structure */ |
166 | struct htc_endpoint_credit_dist { | 166 | struct htc_endpoint_credit_dist { |
@@ -363,7 +363,7 @@ int HTCAddReceivePkt(HTC_HANDLE HTCHandle, struct htc_packet *pPacket); | |||
363 | +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ | 363 | +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ |
364 | int HTCConnectService(HTC_HANDLE HTCHandle, | 364 | int HTCConnectService(HTC_HANDLE HTCHandle, |
365 | struct htc_service_connect_req *pReq, | 365 | struct htc_service_connect_req *pReq, |
366 | HTC_SERVICE_CONNECT_RESP *pResp); | 366 | struct htc_service_connect_resp *pResp); |
367 | /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | 367 | /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
368 | @desc: Send an HTC packet | 368 | @desc: Send an HTC packet |
369 | @function name: HTCSendPkt | 369 | @function name: HTCSendPkt |
diff --git a/drivers/staging/ath6kl/os/linux/ar6000_drv.c b/drivers/staging/ath6kl/os/linux/ar6000_drv.c index a7c57e3f3b67..41c66b77e5f6 100644 --- a/drivers/staging/ath6kl/os/linux/ar6000_drv.c +++ b/drivers/staging/ath6kl/os/linux/ar6000_drv.c | |||
@@ -2343,7 +2343,7 @@ static int ar6000_connectservice(AR_SOFTC_T *ar, | |||
2343 | char *pDesc) | 2343 | char *pDesc) |
2344 | { | 2344 | { |
2345 | int status; | 2345 | int status; |
2346 | HTC_SERVICE_CONNECT_RESP response; | 2346 | struct htc_service_connect_resp response; |
2347 | 2347 | ||
2348 | do { | 2348 | do { |
2349 | 2349 | ||
diff --git a/drivers/staging/ath6kl/os/linux/ar6000_raw_if.c b/drivers/staging/ath6kl/os/linux/ar6000_raw_if.c index 35de2fb9f455..7b6339c41e95 100644 --- a/drivers/staging/ath6kl/os/linux/ar6000_raw_if.c +++ b/drivers/staging/ath6kl/os/linux/ar6000_raw_if.c | |||
@@ -115,7 +115,7 @@ static int ar6000_connect_raw_service(AR_SOFTC_T *ar, | |||
115 | HTC_RAW_STREAM_ID StreamID) | 115 | HTC_RAW_STREAM_ID StreamID) |
116 | { | 116 | { |
117 | int status; | 117 | int status; |
118 | HTC_SERVICE_CONNECT_RESP response; | 118 | struct htc_service_connect_resp response; |
119 | u8 streamNo; | 119 | u8 streamNo; |
120 | struct htc_service_connect_req connect; | 120 | struct htc_service_connect_req connect; |
121 | 121 | ||