|
@@ -467,7 +467,8 @@ static void hif_latency_profile_measure(struct hif_exec_context *hif_ext_group)
|
|
|
hif_ext_group->sched_latency_stats[7]++;
|
|
|
}
|
|
|
#else
|
|
|
-static void hif_latency_profile_measure(struct hif_exec_context *hif_ext_group)
|
|
|
+static inline
|
|
|
+void hif_latency_profile_measure(struct hif_exec_context *hif_ext_group)
|
|
|
{
|
|
|
}
|
|
|
#endif
|
|
@@ -484,11 +485,13 @@ static void hif_latency_profile_start(struct hif_exec_context *hif_ext_group)
|
|
|
hif_ext_group->tstamp = qdf_ktime_to_ms(qdf_ktime_get());
|
|
|
}
|
|
|
#else
|
|
|
-static void hif_latency_profile_start(struct hif_exec_context *hif_ext_group)
|
|
|
+static inline
|
|
|
+void hif_latency_profile_start(struct hif_exec_context *hif_ext_group)
|
|
|
{
|
|
|
}
|
|
|
#endif
|
|
|
|
|
|
+#ifdef FEATURE_NAPI
|
|
|
/**
|
|
|
* hif_exec_poll() - napi poll
|
|
|
* napi: napi struct
|
|
@@ -584,7 +587,6 @@ struct hif_execution_ops napi_sched_ops = {
|
|
|
.kill = &hif_exec_napi_kill,
|
|
|
};
|
|
|
|
|
|
-#ifdef FEATURE_NAPI
|
|
|
/**
|
|
|
* hif_exec_napi_create() - allocate and initialize a napi exec context
|
|
|
* @scale: a binary shift factor to map NAPI budget from\to internal
|
|
@@ -611,7 +613,7 @@ static struct hif_exec_context *hif_exec_napi_create(uint32_t scale)
|
|
|
#else
|
|
|
static struct hif_exec_context *hif_exec_napi_create(uint32_t scale)
|
|
|
{
|
|
|
- HIF_WARN("%s: FEATURE_NAPI not defined, making tasklet");
|
|
|
+ HIF_WARN("%s: FEATURE_NAPI not defined, making tasklet", __func__);
|
|
|
return hif_exec_tasklet_create();
|
|
|
}
|
|
|
#endif
|