xref: /wlan-dirver/qca-wifi-host-cmn/umac/cmn_services/crypto/src/wlan_crypto_main.c (revision 3149adf58a329e17232a4c0e58d460d025edd55a)
1 /*
2  * Copyright (c) 2017-2018 The Linux Foundation. All rights reserved.
3  *
4  * Permission to use, copy, modify, and/or distribute this software for
5  * any purpose with or without fee is hereby granted, provided that the
6  * above copyright notice and this permission notice appear in all
7  * copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
10  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
11  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
12  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
13  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
14  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
15  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16  * PERFORMANCE OF THIS SOFTWARE.
17  */
18 
19  /**
20  * DOC: Public API intialization of crypto service with object manager
21  */
22 #include <qdf_types.h>
23 #include "wlan_crypto_main_i.h"
24 #include "wlan_crypto_main.h"
25 
26 /**
27  * wlan_crypto_init - Init the crypto service with object manager
28  *                    Called from umac init context.
29  *
30  * Return: QDF_STATUS_SUCCESS - in case of success
31  */
32 QDF_STATUS wlan_crypto_init(void)
33 {
34 	return __wlan_crypto_init();
35 }
36 
37 /**
38  * wlan_crypto_deinit - Deinit the crypto service with object manager
39  *                    Called from umac deinit context.
40  *
41  * Return: QDF_STATUS_SUCCESS - in case of success
42  */
43 QDF_STATUS wlan_crypto_deinit(void)
44 {
45 	return __wlan_crypto_deinit();
46 }
47