diff options
Diffstat (limited to 'sde-drm/drm_atomic_req.cpp')
-rw-r--r-- | sde-drm/drm_atomic_req.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sde-drm/drm_atomic_req.cpp b/sde-drm/drm_atomic_req.cpp index 8f381333..6a485c0c 100644 --- a/sde-drm/drm_atomic_req.cpp +++ b/sde-drm/drm_atomic_req.cpp @@ -1,5 +1,5 @@ /* -* Copyright (c) 2019, The Linux Foundation. All rights reserved. +* Copyright (c) 2019, 2021, The Linux Foundation. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are @@ -132,6 +132,9 @@ int DRMAtomicReq::Perform(DRMOps opcode, uint32_t obj_id, ...) { case DRMOps::DPPS_COMMIT_FEATURE: { drm_mgr_->GetDppsMgrIntf()->CommitDppsFeatures(drm_atomic_req_, token_); } break; + case DRMOps::COMMIT_PANEL_FEATURES: { + drm_mgr_->GetPanelFeatureMgrIntf()->CommitPanelFeatures(drm_atomic_req_, token_); + } break; default: DRM_LOGE("Invalid opcode %d", opcode); } |