forked from ~ljy/RK356X_SDK_RELEASE

hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
kernel/drivers/media/platform/omap/omap_vout_vrfb.h
....@@ -20,7 +20,7 @@
2020 int omap_vout_vrfb_buffer_setup(struct omap_vout_device *vout,
2121 unsigned int *count, unsigned int startindex);
2222 int omap_vout_prepare_vrfb(struct omap_vout_device *vout,
23
- struct videobuf_buffer *vb);
23
+ struct vb2_buffer *vb);
2424 void omap_vout_calculate_vrfb_offset(struct omap_vout_device *vout);
2525 #else
2626 static inline void omap_vout_free_vrfb_buffers(struct omap_vout_device *vout) { };
....@@ -32,7 +32,7 @@
3232 unsigned int *count, unsigned int startindex)
3333 { return 0; };
3434 static inline int omap_vout_prepare_vrfb(struct omap_vout_device *vout,
35
- struct videobuf_buffer *vb)
35
+ struct vb2_buffer *vb)
3636 { return 0; };
3737 static inline void omap_vout_calculate_vrfb_offset(struct omap_vout_device *vout) { };
3838 #endif