summaryrefslogtreecommitdiff
path: root/dp
diff options
context:
space:
mode:
authorHimanshu Agarwal <himanaga@codeaurora.org>2017-02-23 16:26:33 +0530
committerqcabuildsw <qcabuildsw@localhost>2017-02-28 21:25:14 -0800
commitdede47921f02131af5dc883856632a7f24c2a8bc (patch)
treee11ed4ea0a3517b7711319fc9ff33b545b4587d8 /dp
parented108e85e806694ff21f6c8d188dfbf6b205fd5b (diff)
qcacmn: Separate pdev detach processing as per pdev attach
Separate out pdev detach processing as ol_txrx_pdev_detach() and ol_txrx_pdev_pre_detach() corresponding to pdev attach functions ol_txrx_pdev_attach() and ol_txrx_pdev_post_attach() respectively. Change-Id: I7fdbe70ad8262a57b61a742fcfb2779e323172af CRs-Fixed: 2011937
Diffstat (limited to 'dp')
-rw-r--r--dp/inc/cdp_txrx_cmn.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/dp/inc/cdp_txrx_cmn.h b/dp/inc/cdp_txrx_cmn.h
index da17d20a8d55..942fa5233089 100644
--- a/dp/inc/cdp_txrx_cmn.h
+++ b/dp/inc/cdp_txrx_cmn.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2011-2016 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2011-2017 The Linux Foundation. All rights reserved.
*
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
*
@@ -286,8 +286,8 @@ ol_txrx_pdev_attach(
HTC_HANDLE htc_pdev,
qdf_device_t osdev);
-void
-ol_txrx_pdev_detach(ol_txrx_pdev_handle pdev, int force);
+void ol_txrx_pdev_pre_detach(ol_txrx_pdev_handle pdev, int force);
+void ol_txrx_pdev_detach(ol_txrx_pdev_handle pdev);
ol_txrx_peer_handle
ol_txrx_peer_attach(ol_txrx_vdev_handle vdev, uint8_t *peer_mac_addr);