drm/rockchip: debugfs: Remove unused vop_dump_list* structure

vop_dump_list* is no longer used and this patch removes this structure.

Signed-off-by: Chaoyi Chen <chaoyi.chen@rock-chips.com>
Signed-off-by: Sandy Huang <hjc@rock-chips.com>
Change-Id: I9f32dfd707a1b7633479f2f2f8fee12ad69a96b1
This commit is contained in:
Chaoyi Chen
2024-03-25 17:00:42 +08:00
committed by Tao Huang
parent c1c9524d3f
commit f483fa9405
2 changed files with 1 additions and 15 deletions

View File

@@ -9,16 +9,6 @@
struct vop_dump_info;
/**
* struct vop_dump_list - store all buffer info per frame
*
* one frame maybe multiple buffer, all will be stored here.
*
*/
struct vop_dump_list {
struct list_head entry;
};
/**
* @DUMP_DISABLE: Disable dump and do not record plane info into list.
* @DUMP_ENABLE: Record plane info into list.

View File

@@ -168,14 +168,10 @@ struct rockchip_crtc {
#if defined(CONFIG_ROCKCHIP_DRM_DEBUG)
/**
* @vop_dump_status the status of vop dump control
* @vop_dump_list_head the list head of vop dump list
* @vop_dump_list_init_flag init once
* @vop_dump_times control the dump times
* @frme_count the frame of dump buf
* @vop_dump_frame_count the frame of dump buf
*/
enum vop_dump_status vop_dump_status;
struct list_head vop_dump_list_head;
bool vop_dump_list_init_flag;
int vop_dump_times;
int vop_dump_frame_count;
#endif