Merge "PM / devfreq: gpubw_mon: Add null check for governor private data"
This commit is contained in:
commit
2d0e3734b5
1 changed files with 6 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
/* Copyright (c) 2014-2016, The Linux Foundation. All rights reserved.
|
||||
/* Copyright (c) 2014-2016,2019, The Linux Foundation. All rights reserved.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License version 2 and
|
||||
|
@ -213,10 +213,11 @@ static int devfreq_gpubw_event_handler(struct devfreq *devfreq,
|
|||
case DEVFREQ_GOV_SUSPEND:
|
||||
{
|
||||
struct devfreq_msm_adreno_tz_data *priv = devfreq->data;
|
||||
|
||||
priv->bus.total_time = 0;
|
||||
priv->bus.gpu_time = 0;
|
||||
priv->bus.ram_time = 0;
|
||||
if (priv) {
|
||||
priv->bus.total_time = 0;
|
||||
priv->bus.gpu_time = 0;
|
||||
priv->bus.ram_time = 0;
|
||||
}
|
||||
}
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Add table
Reference in a new issue