File tree Expand file tree Collapse file tree
drivers/gpu/drm/msm/adreno Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -600,7 +600,7 @@ static const struct of_device_id dt_match[] = {
600600};
601601
602602#ifdef CONFIG_PM
603- static int adreno_resume (struct device * dev )
603+ static int adreno_runtime_resume (struct device * dev )
604604{
605605 struct msm_gpu * gpu = dev_to_gpu (dev );
606606
@@ -616,7 +616,7 @@ static int active_submits(struct msm_gpu *gpu)
616616 return active_submits ;
617617}
618618
619- static int adreno_suspend (struct device * dev )
619+ static int adreno_runtime_suspend (struct device * dev )
620620{
621621 struct msm_gpu * gpu = dev_to_gpu (dev );
622622 int remaining ;
@@ -635,7 +635,7 @@ static int adreno_suspend(struct device *dev)
635635
636636static const struct dev_pm_ops adreno_pm_ops = {
637637 SET_SYSTEM_SLEEP_PM_OPS (pm_runtime_force_suspend , pm_runtime_force_resume )
638- SET_RUNTIME_PM_OPS (adreno_suspend , adreno_resume , NULL )
638+ SET_RUNTIME_PM_OPS (adreno_runtime_suspend , adreno_runtime_resume , NULL )
639639};
640640
641641static struct platform_driver adreno_driver = {
You can’t perform that action at this time.
0 commit comments