123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /*
- * Copyright (c) 2017 The Linux Foundation. All rights reserved.
- *
- * Permission to use, copy, modify, and/or distribute this software for
- * any purpose with or without fee is hereby granted, provided that the
- * above copyright notice and this permission notice appear in all
- * copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
- * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
- * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
- * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
- * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- * PERFORMANCE OF THIS SOFTWARE.
- */
- /**
- * DOC: wlan_tdls_ucfg_api.h
- *
- * TDLS north bound interface declaration
- */
- #if !defined(_WLAN_TDLS_UCFG_API_H_)
- #define _WLAN_TDLS_UCFG_API_H_
- #include <scheduler_api.h>
- #include <wlan_tdls_public_structs.h>
- #include <wlan_objmgr_cmn.h>
- /**
- * ucfg_tdls_init() - TDLS module initialization API
- *
- * Return: QDF_STATUS
- */
- QDF_STATUS ucfg_tdls_init(void);
- /**
- * ucfg_tdls_deinit() - TDLS module deinitilization API
- *
- * Return: QDF_STATUS
- */
- QDF_STATUS ucfg_tdls_deinit(void);
- /**
- * ucfg_tdls_psoc_open() - TDLS module psoc open API
- * @psoc: psoc object
- *
- * Return: QDF_STATUS
- */
- QDF_STATUS ucfg_tdls_psoc_open(struct wlan_objmgr_psoc *psoc);
- /**
- * ucfg_tdls_psoc_close() - TDLS module psoc close API
- * @psoc: psoc object
- *
- * Return: QDF_STATUS
- */
- QDF_STATUS ucfg_tdls_psoc_close(struct wlan_objmgr_psoc *psoc);
- /**
- * ucfg_tdls_psoc_start() - TDLS module start
- * @psoc: psoc object
- * @req: tdls start paramets
- *
- * Return: QDF_STATUS
- */
- QDF_STATUS ucfg_tdls_psoc_start(struct wlan_objmgr_psoc *psoc,
- struct tdls_start_params *req);
- /**
- * ucfg_tdls_psoc_stop() - TDLS module stop
- * @psoc: psoc object
- *
- * Return: QDF_STATUS
- */
- QDF_STATUS ucfg_tdls_psoc_stop(struct wlan_objmgr_psoc *psoc);
- #endif
|