qcacld-3.0: Replace hdd_context_t in wlan_hdd_tsf.[ch]
The Linux Coding Style enumerates a few special cases where typedefs are useful, but stresses "NEVER EVER use a typedef unless you can clearly match one of those rules." The hdd_context_t typedef does not meet any of those criteria, so replace references to it with a reference to the underlying struct. Change-Id: I3d3d82e1c5c7b70d6afab98f2c81b5d317ade628 CRs-Fixed: 2100160
This commit is contained in:
parent
7d176a58bd
commit
854cccddbe
@ -28,6 +28,8 @@
|
||||
#if !defined WLAN_HDD_TSF_H
|
||||
#define WLAN_HDD_TSF_H
|
||||
|
||||
struct hdd_context;
|
||||
|
||||
/**
|
||||
* enum hdd_tsf_get_state - status of get tsf action
|
||||
* @TSF_RETURN: get tsf
|
||||
@ -68,7 +70,7 @@ enum hdd_tsf_capture_state {
|
||||
/**
|
||||
* wlan_hdd_tsf_init() - set gpio and callbacks for
|
||||
* capturing tsf and init tsf_plus
|
||||
* @hdd_ctx: pointer to the hdd_context_t
|
||||
* @hdd_ctx: pointer to the struct hdd_context
|
||||
*
|
||||
* This function set the callback to sme module, the callback will be
|
||||
* called when a tsf event is reported by firmware; set gpio number
|
||||
@ -81,13 +83,13 @@ void wlan_hdd_tsf_init(struct hdd_context *hdd_ctx);
|
||||
|
||||
/**
|
||||
* wlan_hdd_tsf_deinit() - reset callbacks for capturing tsf, deinit tsf_plus
|
||||
* @hdd_ctx: pointer to the hdd_context_t
|
||||
* @hdd_ctx: pointer to the struct hdd_context
|
||||
*
|
||||
* This function reset the callback to sme module, and deinit tsf_plus
|
||||
*
|
||||
* Return: nothing
|
||||
*/
|
||||
void wlan_hdd_tsf_deinit(hdd_context_t *hdd_ctx);
|
||||
void wlan_hdd_tsf_deinit(struct hdd_context *hdd_ctx);
|
||||
|
||||
/**
|
||||
* hdd_capture_tsf() - capture tsf
|
||||
@ -136,7 +138,7 @@ static inline void wlan_hdd_tsf_init(struct hdd_context *hdd_ctx)
|
||||
{
|
||||
}
|
||||
|
||||
static inline void wlan_hdd_tsf_deinit(hdd_context_t *hdd_ctx)
|
||||
static inline void wlan_hdd_tsf_deinit(struct hdd_context *hdd_ctx)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -94,7 +94,7 @@ enum hdd_tsf_get_state hdd_tsf_check_conn_state(hdd_adapter_t *adapter)
|
||||
|
||||
static bool hdd_tsf_is_initialized(hdd_adapter_t *adapter)
|
||||
{
|
||||
hdd_context_t *hddctx;
|
||||
struct hdd_context *hddctx;
|
||||
|
||||
if (!adapter) {
|
||||
hdd_err("invalid adapter");
|
||||
@ -154,7 +154,7 @@ static enum hdd_tsf_op_result hdd_capture_tsf_internal(
|
||||
hdd_adapter_t *adapter, uint32_t *buf, int len)
|
||||
{
|
||||
int ret;
|
||||
hdd_context_t *hddctx;
|
||||
struct hdd_context *hddctx;
|
||||
|
||||
if (adapter == NULL || buf == NULL) {
|
||||
hdd_err("invalid pointer");
|
||||
@ -213,7 +213,7 @@ static enum hdd_tsf_op_result hdd_indicate_tsf_internal(
|
||||
hdd_adapter_t *adapter, uint32_t *buf, int len)
|
||||
{
|
||||
int ret;
|
||||
hdd_context_t *hddctx;
|
||||
struct hdd_context *hddctx;
|
||||
|
||||
if (!adapter || !buf) {
|
||||
hdd_err("invalid pointer");
|
||||
@ -482,7 +482,7 @@ static void hdd_update_timestamp(hdd_adapter_t *adapter,
|
||||
|
||||
static inline bool hdd_tsf_is_in_cap(hdd_adapter_t *adapter)
|
||||
{
|
||||
hdd_context_t *hddctx;
|
||||
struct hdd_context *hddctx;
|
||||
|
||||
hddctx = WLAN_HDD_GET_CTX(adapter);
|
||||
if (!hddctx)
|
||||
@ -671,7 +671,7 @@ static void hdd_capture_tsf_timer_expired_handler(void *arg)
|
||||
static irqreturn_t hdd_tsf_captured_irq_handler(int irq, void *arg)
|
||||
{
|
||||
hdd_adapter_t *adapter;
|
||||
hdd_context_t *hdd_ctx;
|
||||
struct hdd_context *hdd_ctx;
|
||||
uint64_t host_time;
|
||||
char *name = NULL;
|
||||
|
||||
@ -680,7 +680,7 @@ static irqreturn_t hdd_tsf_captured_irq_handler(int irq, void *arg)
|
||||
|
||||
host_time = hdd_get_monotonic_host_time();
|
||||
|
||||
hdd_ctx = (hdd_context_t *)arg;
|
||||
hdd_ctx = (struct hdd_context *)arg;
|
||||
|
||||
adapter = hdd_ctx->cap_tsf_context;
|
||||
if (!adapter)
|
||||
@ -704,7 +704,7 @@ static irqreturn_t hdd_tsf_captured_irq_handler(int irq, void *arg)
|
||||
static enum hdd_tsf_op_result hdd_tsf_sync_init(hdd_adapter_t *adapter)
|
||||
{
|
||||
QDF_STATUS ret;
|
||||
hdd_context_t *hddctx;
|
||||
struct hdd_context *hddctx;
|
||||
struct net_device *net_dev;
|
||||
|
||||
if (!adapter)
|
||||
@ -753,7 +753,7 @@ fail:
|
||||
static enum hdd_tsf_op_result hdd_tsf_sync_deinit(hdd_adapter_t *adapter)
|
||||
{
|
||||
QDF_STATUS ret;
|
||||
hdd_context_t *hddctx;
|
||||
struct hdd_context *hddctx;
|
||||
struct net_device *net_dev;
|
||||
|
||||
if (!adapter)
|
||||
@ -947,7 +947,7 @@ static inline int __hdd_indicate_tsf(hdd_adapter_t *adapter,
|
||||
}
|
||||
|
||||
static inline
|
||||
enum hdd_tsf_op_result wlan_hdd_tsf_plus_init(hdd_context_t *hdd_ctx)
|
||||
enum hdd_tsf_op_result wlan_hdd_tsf_plus_init(struct hdd_context *hdd_ctx)
|
||||
{
|
||||
int ret;
|
||||
|
||||
@ -965,7 +965,7 @@ enum hdd_tsf_op_result wlan_hdd_tsf_plus_init(hdd_context_t *hdd_ctx)
|
||||
}
|
||||
|
||||
static inline
|
||||
enum hdd_tsf_op_result wlan_hdd_tsf_plus_deinit(hdd_context_t *hdd_ctx)
|
||||
enum hdd_tsf_op_result wlan_hdd_tsf_plus_deinit(struct hdd_context *hdd_ctx)
|
||||
{
|
||||
int ret;
|
||||
|
||||
@ -1016,13 +1016,13 @@ static inline int __hdd_capture_tsf(hdd_adapter_t *adapter,
|
||||
}
|
||||
|
||||
static inline
|
||||
enum hdd_tsf_op_result wlan_hdd_tsf_plus_init(hdd_context_t *hdd_ctx)
|
||||
enum hdd_tsf_op_result wlan_hdd_tsf_plus_init(struct hdd_context *hdd_ctx)
|
||||
{
|
||||
return HDD_TSF_OP_SUCC;
|
||||
}
|
||||
|
||||
static inline
|
||||
enum hdd_tsf_op_result wlan_hdd_tsf_plus_deinit(hdd_context_t *hdd_ctx)
|
||||
enum hdd_tsf_op_result wlan_hdd_tsf_plus_deinit(struct hdd_context *hdd_ctx)
|
||||
{
|
||||
return HDD_TSF_OP_SUCC;
|
||||
}
|
||||
@ -1116,7 +1116,7 @@ static int __wlan_hdd_cfg80211_handle_tsf_cmd(struct wiphy *wiphy,
|
||||
{
|
||||
struct net_device *dev = wdev->netdev;
|
||||
hdd_adapter_t *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
|
||||
hdd_context_t *hdd_ctx = wiphy_priv(wiphy);
|
||||
struct hdd_context *hdd_ctx = wiphy_priv(wiphy);
|
||||
struct nlattr *tb_vendor[QCA_WLAN_VENDOR_ATTR_TSF_MAX + 1];
|
||||
int status, ret;
|
||||
struct sk_buff *reply_skb;
|
||||
@ -1273,7 +1273,7 @@ fail:
|
||||
qdf_atomic_set(&hdd_ctx->tsf_ready_flag, 0);
|
||||
}
|
||||
|
||||
void wlan_hdd_tsf_deinit(hdd_context_t *hdd_ctx)
|
||||
void wlan_hdd_tsf_deinit(struct hdd_context *hdd_ctx)
|
||||
{
|
||||
if (!hdd_ctx)
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user