summaryrefslogtreecommitdiff
path: root/mali_kbase/platform/pixel/mali_kbase_config_platform.h
diff options
context:
space:
mode:
Diffstat (limited to 'mali_kbase/platform/pixel/mali_kbase_config_platform.h')
-rw-r--r--mali_kbase/platform/pixel/mali_kbase_config_platform.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/mali_kbase/platform/pixel/mali_kbase_config_platform.h b/mali_kbase/platform/pixel/mali_kbase_config_platform.h
index a0bf623..ef73c65 100644
--- a/mali_kbase/platform/pixel/mali_kbase_config_platform.h
+++ b/mali_kbase/platform/pixel/mali_kbase_config_platform.h
@@ -438,22 +438,16 @@ struct pixel_context {
/**
* struct pixel_platform_data - Per kbase_context Pixel specific platform data
*
- * @kctx: Handle to the parent kctx
- * @stats: Tracks the dvfs metrics for the UID associated with this context
+ * @stats: Tracks the dvfs metrics for the UID associated with this context
*
- * @slc.peak_demand: The parent context's maximum demand for SLC space
- * @slc.peak_usage: The parent context's maximum use of SLC space
- * @slc.idle_work: Work item used to queue SLC partition shrink upon context idle
- * @slc.idle_work_cancelled: Flag for async cancellation of idle_work
+ * @slc.peak_demand: The parent context's maximum demand for SLC space
+ * @slc.peak_usage: The parent context's maximum use of SLC space
*/
struct pixel_platform_data {
- struct kbase_context *kctx;
struct gpu_dvfs_metrics_uid_stats* stats;
struct {
u64 peak_demand;
u64 peak_usage;
- struct work_struct idle_work;
- atomic_t idle_work_cancelled;
} slc;
};