aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/ath6kl/include/htc_api.h
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2011-02-02 17:05:57 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2011-02-02 17:34:51 -0500
commit4f69cef0a978e8efc2b2a5c0666bb59f39426685 (patch)
tree48d2368958bc313433729fee927cd04b9966efb9 /drivers/staging/ath6kl/include/htc_api.h
parenta1d46529630cbe1072b7b7b1a0104655b47cd7de (diff)
staging: ath6kl: Remove #define A_OK
Just use 0. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/ath6kl/include/htc_api.h')
-rw-r--r--drivers/staging/ath6kl/include/htc_api.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/ath6kl/include/htc_api.h b/drivers/staging/ath6kl/include/htc_api.h
index 3cfa9f2c8e0..c5c9fed3fe4 100644
--- a/drivers/staging/ath6kl/include/htc_api.h
+++ b/drivers/staging/ath6kl/include/htc_api.h
@@ -341,7 +341,7 @@ int HTCStart(HTC_HANDLE HTCHandle);
341 @input: HTCHandle - HTC handle 341 @input: HTCHandle - HTC handle
342 pPacket - HTC receive packet to add 342 pPacket - HTC receive packet to add
343 @output: 343 @output:
344 @return: A_OK on success 344 @return: 0 on success
345 @notes: user must supply HTC packets for capturing incomming HTC frames. The caller 345 @notes: user must supply HTC packets for capturing incomming HTC frames. The caller
346 must initialize each HTC packet using the SET_HTC_PACKET_INFO_RX_REFILL() 346 must initialize each HTC packet using the SET_HTC_PACKET_INFO_RX_REFILL()
347 macro. 347 macro.
@@ -370,7 +370,7 @@ int HTCConnectService(HTC_HANDLE HTCHandle,
370 @input: HTCHandle - HTC handle 370 @input: HTCHandle - HTC handle
371 pPacket - packet to send 371 pPacket - packet to send
372 @output: 372 @output:
373 @return: A_OK 373 @return: 0
374 @notes: Caller must initialize packet using SET_HTC_PACKET_INFO_TX() macro. 374 @notes: Caller must initialize packet using SET_HTC_PACKET_INFO_TX() macro.
375 This interface is fully asynchronous. On error, HTC SendPkt will 375 This interface is fully asynchronous. On error, HTC SendPkt will
376 call the registered Endpoint callback to cleanup the packet. 376 call the registered Endpoint callback to cleanup the packet.
@@ -499,7 +499,7 @@ void HTCUnblockRecv(HTC_HANDLE HTCHandle);
499 @input: HTCHandle - HTC handle 499 @input: HTCHandle - HTC handle
500 pPktQueue - local queue holding packets to send 500 pPktQueue - local queue holding packets to send
501 @output: 501 @output:
502 @return: A_OK 502 @return: 0
503 @notes: Caller must initialize each packet using SET_HTC_PACKET_INFO_TX() macro. 503 @notes: Caller must initialize each packet using SET_HTC_PACKET_INFO_TX() macro.
504 The queue must only contain packets directed at the same endpoint. 504 The queue must only contain packets directed at the same endpoint.
505 Caller supplies a pointer to an HTC_PACKET_QUEUE structure holding the TX packets in FIFO order. 505 Caller supplies a pointer to an HTC_PACKET_QUEUE structure holding the TX packets in FIFO order.
@@ -519,7 +519,7 @@ int HTCSendPktsMultiple(HTC_HANDLE HTCHandle, HTC_PACKET_QUEUE *pPktQueue);
519 @input: HTCHandle - HTC handle 519 @input: HTCHandle - HTC handle
520 pPktQueue - HTC receive packet queue holding packets to add 520 pPktQueue - HTC receive packet queue holding packets to add
521 @output: 521 @output:
522 @return: A_OK on success 522 @return: 0 on success
523 @notes: user must supply HTC packets for capturing incomming HTC frames. The caller 523 @notes: user must supply HTC packets for capturing incomming HTC frames. The caller
524 must initialize each HTC packet using the SET_HTC_PACKET_INFO_RX_REFILL() 524 must initialize each HTC packet using the SET_HTC_PACKET_INFO_RX_REFILL()
525 macro. The queue must only contain recv packets for the same endpoint. 525 macro. The queue must only contain recv packets for the same endpoint.