qcacmn: Fix the coding convention issues in Spectral dispatcher

Current Spectral dispatcher code is not following coding convention
rules in some places.

Change-Id: I0370ca91c8b5ac3a31ae07d6be7d18a3290790f8
CRs-Fixed: 2151554
This commit is contained in:
Shiva Krishna Pittala
2018-01-25 19:11:04 +05:30
committed by snandini
parent f57c0b6262
commit 6273adc01a
7 changed files with 130 additions and 104 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017 The Linux Foundation. All rights reserved.
* Copyright (c) 2017-2018 The Linux Foundation. All rights reserved.
*
*
* Permission to use, copy, modify, and/or distribute this software for
@@ -24,23 +24,27 @@
#include <qdf_types.h>
/**
* tgt_send_phydata() - Send Spectral PHY data over netlink
* tgt_send_phydata() - Send Spectral PHY data
* @pdev: Pointer to pdev
* @sock: Netlink socket to use
* @nbuf: Network buffer containing PHY data to send
*
* Send spectral PHY data over netlink
*
* Return: 0 on success, negative value on failure
*/
int tgt_send_phydata(struct wlan_objmgr_pdev *pdev,
struct sock *sock, qdf_nbuf_t nbuf);
/**
* tgt_get_target_handle() - Get handle to target_if internal Spectral data
* tgt_get_target_handle() - Get target_if handle
* @pdev: Pointer to pdev
*
* Get handle to target_if internal Spectral data
*
* Return: Handle to target_if internal Spectral data on success, NULL on
* failure
*/
void *tgt_get_target_handle(struct wlan_objmgr_pdev *pdev);
#endif /* _WLAN_SPECTRAL_TGT_API_H_*/
#endif /* _WLAN_SPECTRAL_TGT_API_H_ */