hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/include/soc/rockchip/rockchip_rockit.h
....@@ -35,6 +35,7 @@
3535 int cur_fps;
3636 u64 old_time;
3737 bool is_discard;
38
+ struct mutex freebuf_lock;
3839 };
3940
4041 struct ISP_VIDEO_FRAMES {
....@@ -132,6 +133,7 @@
132133 int rkisp_rockit_get_tb_stream_info(struct rockit_cfg *input_rockit_cfg,
133134 struct rkisp_tb_stream_info *info);
134135 int rkisp_rockit_free_tb_stream_buf(struct rockit_cfg *input_rockit_cfg);
136
+int rkisp_rockit_free_stream_buf(struct rockit_cfg *input_rockit_cfg);
135137
136138 void *rkcif_rockit_function_register(void *function, int cmd);
137139 int rkcif_rockit_get_cifdev(char **name);
....@@ -175,6 +177,11 @@
175177 return -EINVAL;
176178 }
177179
180
+static inline int rkisp_rockit_free_stream_buf(struct rockit_cfg *input_rockit_cfg)
181
+{
182
+ return -EINVAL;
183
+}
184
+
178185 #endif
179186
180187 #endif