diff options
author | Bibby Hsieh <bibby.hsieh@mediatek.com> | 2019-12-10 13:05:24 +0800 |
---|---|---|
committer | CK Hu <ck.hu@mediatek.com> | 2019-12-20 16:19:12 +0800 |
commit | e0e4706c7e9f358dc22a8f97d8e6f0f5d9a46168 (patch) | |
tree | 7aff165f24bbf893ca7d9e8d65c027969f982127 /drivers/gpu/drm/mediatek/mtk_drm_ddp_comp.h | |
parent | 9b59b8c6f8462cd330fc7fb735c4d864357b3689 (diff) | |
download | linux-stable-e0e4706c7e9f358dc22a8f97d8e6f0f5d9a46168.tar.gz linux-stable-e0e4706c7e9f358dc22a8f97d8e6f0f5d9a46168.tar.bz2 linux-stable-e0e4706c7e9f358dc22a8f97d8e6f0f5d9a46168.zip |
drm/mediatek: remove unused external function
layer_on and layer_off both are unused external function,
remove them from mtk_ddp_comp_funcs structure.
Signed-off-by: Bibby Hsieh <bibby.hsieh@mediatek.com>
Signed-off-by: CK Hu <ck.hu@mediatek.com>
Diffstat (limited to 'drivers/gpu/drm/mediatek/mtk_drm_ddp_comp.h')
-rw-r--r-- | drivers/gpu/drm/mediatek/mtk_drm_ddp_comp.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/drivers/gpu/drm/mediatek/mtk_drm_ddp_comp.h b/drivers/gpu/drm/mediatek/mtk_drm_ddp_comp.h index 2f1e9e75b8da..2fe95b05d670 100644 --- a/drivers/gpu/drm/mediatek/mtk_drm_ddp_comp.h +++ b/drivers/gpu/drm/mediatek/mtk_drm_ddp_comp.h @@ -79,8 +79,6 @@ struct mtk_ddp_comp_funcs { void (*disable_vblank)(struct mtk_ddp_comp *comp); unsigned int (*supported_rotations)(struct mtk_ddp_comp *comp); unsigned int (*layer_nr)(struct mtk_ddp_comp *comp); - void (*layer_on)(struct mtk_ddp_comp *comp, unsigned int idx); - void (*layer_off)(struct mtk_ddp_comp *comp, unsigned int idx); int (*layer_check)(struct mtk_ddp_comp *comp, unsigned int idx, struct mtk_plane_state *state); @@ -151,20 +149,6 @@ static inline unsigned int mtk_ddp_comp_layer_nr(struct mtk_ddp_comp *comp) return 0; } -static inline void mtk_ddp_comp_layer_on(struct mtk_ddp_comp *comp, - unsigned int idx) -{ - if (comp->funcs && comp->funcs->layer_on) - comp->funcs->layer_on(comp, idx); -} - -static inline void mtk_ddp_comp_layer_off(struct mtk_ddp_comp *comp, - unsigned int idx) -{ - if (comp->funcs && comp->funcs->layer_off) - comp->funcs->layer_off(comp, idx); -} - static inline int mtk_ddp_comp_layer_check(struct mtk_ddp_comp *comp, unsigned int idx, struct mtk_plane_state *state) |