qcacmn: Rename osif files and functions for connection manager

The naming of the osif files and functions is not correct as
these files and functions include wlan_cfg80211 as prefix
instead of osif.
Correct file name and function name should contain the component
name first, followed by feature name followed by method.

Change-Id: Ic166c112189ef79a84f61d16e7e04a6334c61178
CRs-Fixed: 2780298
Este commit está contenido en:
Ashish Kumar Dhanotiya
2020-09-18 00:14:53 +05:30
cometido por snandini
padre 7c64a2c250
commit 05d0f49abd
Se han modificado 9 ficheros con 56 adiciones y 60 borrados

Ver fichero

@@ -31,27 +31,27 @@
#include "wlan_objmgr_vdev_obj.h"
/**
* wlan_osif_cfg80211_connect() - Connect start request
* osif_cm_connect() - Connect start request
* @dev: net dev
* @vdev: vdev pointer
* @req: connect req
*
* Return: int
*/
int wlan_osif_cfg80211_connect(struct net_device *dev,
struct wlan_objmgr_vdev *vdev,
struct cfg80211_connect_params *req);
int osif_cm_connect(struct net_device *dev,
struct wlan_objmgr_vdev *vdev,
struct cfg80211_connect_params *req);
/**
* wlan_osif_cfg80211_disconnect() - Disconnect start request
* osif_cm_disconnect() - Disconnect start request
* @dev: net dev
* @vdev: vdev pointer
* @reason: disconnect reason
*
* Return: int
*/
int wlan_osif_cfg80211_disconnect(struct net_device *dev,
struct wlan_objmgr_vdev *vdev,
uint16_t reason);
int osif_cm_disconnect(struct net_device *dev,
struct wlan_objmgr_vdev *vdev,
uint16_t reason);
#endif
#endif /* __WLAN_CFG80211_CM_REQ_H */

Ver fichero

@@ -1,74 +0,0 @@
/*
* Copyright (c) 2012-2015, 2020 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_cfg80211_cm_rsp.h
*
* This header file maintains declarations of connect, disconnect, roam
* response apis.
*/
#ifndef __WLAN_CFG80211_CM_RSP_H
#define __WLAN_CFG80211_CM_RSP_H
#include "wlan_objmgr_vdev_obj.h"
#include "wlan_cm_public_struct.h"
/**
* osif_disconnect_handler() - Indicate disconnnect to userspace
* @vdev: vdev pointer
* @rsp: Disconnect response from connection manager
*
* This function indicates disconnect to the kernel which thus indicates
* to the userspace.
*
* Context: Any context
* Return: QDF_STATUS_SUCCESS on successful indication to kernel,
* else QDF_STATUS with failure reason
*/
QDF_STATUS osif_disconnect_handler(struct wlan_objmgr_vdev *vdev,
struct wlan_cm_discon_rsp *rsp);
/**
* osif_connect_handler() - API to send connect response to kernel
* @vdev: vdev pointer
* @rsp: Connection manager connect response
*
* The API is used to send connection response to kernel
*
* Context: Any context.
* Return: QDF_STATUS
*/
QDF_STATUS osif_connect_handler(struct wlan_objmgr_vdev *vdev,
struct wlan_cm_connect_rsp *rsp);
/**
* osif_failed_candidate_handler() - API to indicate individual candidate
* connect failure resp
* @vdev: vdev pointer
* @rsp: Connection manager connect response for the candidate
*
* The API is is used indicate individual candidate connect failure resp for
* for tried all but last tried candidate. The last candidate will be sent in
* osif_connect_handler.
*
* Context: Any context.
* Return: QDF_STATUS
*/
QDF_STATUS osif_failed_candidate_handler(struct wlan_objmgr_vdev *vdev,
struct wlan_cm_connect_rsp *rsp);
#endif /* __WLAN_CFG80211_CM_RSP_H */