qcacmn: Handle void pointer declarations for pdev and vdev

Replace void pointer handles for pdev and vdev with
abstract structure handles in cdp.
New file cdp_txrx_handle.h has the abstract
structure declarations.

Change-Id: I333e6ea5e699e7cebbfc6281faf7f07c0aee4e2a
CRs-Fixed: 1109835
Cette révision appartient à :
Venkata Sharath Chandra Manchala
2016-11-28 18:10:11 -08:00
révisé par qcabuildsw
Parent 703be6d6c4
révision f2a125a6f8
20 fichiers modifiés avec 388 ajouts et 352 suppressions

Voir le fichier

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2016 The Linux Foundation. All rights reserved.
* Copyright (c) 2016-2017 The Linux Foundation. All rights reserved.
*
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
*
@@ -33,7 +33,7 @@
#ifndef _CDP_TXRX_TX_THROTTLE_H_
#define _CDP_TXRX_TX_THROTTLE_H_
#include <cdp_txrx_ops.h>
#include "cdp_txrx_handle.h"
/**
* cdp_throttle_init_period() - init tx throttle period
* @soc: data path soc handle
@@ -44,8 +44,8 @@
* Return: NONE
*/
static inline void
cdp_throttle_init_period(ol_txrx_soc_handle soc, void *pdev, int period,
uint8_t *dutycycle_level)
cdp_throttle_init_period(ol_txrx_soc_handle soc, struct cdp_pdev *pdev,
int period, uint8_t *dutycycle_level)
{
if (!soc || !soc->ops || !soc->ops->throttle_ops) {
QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,
@@ -68,7 +68,7 @@ cdp_throttle_init_period(ol_txrx_soc_handle soc, void *pdev, int period,
* Return: NONE
*/
static inline void
cdp_throttle_set_level(ol_txrx_soc_handle soc, void *pdev, int level)
cdp_throttle_set_level(ol_txrx_soc_handle soc, struct cdp_pdev *pdev, int level)
{
if (!soc || !soc->ops || !soc->ops->throttle_ops) {
QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_FATAL,