mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
media: intel/ipu6: Make two functions static
Make function used only in one file static and remove from header file. Signed-off-by: Stanislaw Gruszka <stanislaw.gruszka@linux.intel.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
This commit is contained in:
parent
adcdf4160a
commit
4fa1d8d81d
2 changed files with 4 additions and 7 deletions
|
@ -697,8 +697,9 @@ static u64 get_sof_ns_delta(struct ipu6_isys_video *av,
|
|||
return ipu6_buttress_tsc_ticks_to_ns(delta, isp);
|
||||
}
|
||||
|
||||
void ipu6_isys_buf_calc_sequence_time(struct ipu6_isys_buffer *ib,
|
||||
struct ipu6_fw_isys_resp_info_abi *info)
|
||||
static void
|
||||
ipu6_isys_buf_calc_sequence_time(struct ipu6_isys_buffer *ib,
|
||||
struct ipu6_fw_isys_resp_info_abi *info)
|
||||
{
|
||||
struct vb2_buffer *vb = ipu6_isys_buffer_to_vb2_buffer(ib);
|
||||
struct vb2_v4l2_buffer *vbuf = to_vb2_v4l2_buffer(vb);
|
||||
|
@ -721,7 +722,7 @@ void ipu6_isys_buf_calc_sequence_time(struct ipu6_isys_buffer *ib,
|
|||
vbuf->vb2_buf.timestamp);
|
||||
}
|
||||
|
||||
void ipu6_isys_queue_buf_done(struct ipu6_isys_buffer *ib)
|
||||
static void ipu6_isys_queue_buf_done(struct ipu6_isys_buffer *ib)
|
||||
{
|
||||
struct vb2_buffer *vb = ipu6_isys_buffer_to_vb2_buffer(ib);
|
||||
|
||||
|
|
|
@ -69,10 +69,6 @@ void
|
|||
ipu6_isys_buf_to_fw_frame_buf(struct ipu6_fw_isys_frame_buff_set_abi *set,
|
||||
struct ipu6_isys_stream *stream,
|
||||
struct ipu6_isys_buffer_list *bl);
|
||||
void
|
||||
ipu6_isys_buf_calc_sequence_time(struct ipu6_isys_buffer *ib,
|
||||
struct ipu6_fw_isys_resp_info_abi *info);
|
||||
void ipu6_isys_queue_buf_done(struct ipu6_isys_buffer *ib);
|
||||
void ipu6_isys_queue_buf_ready(struct ipu6_isys_stream *stream,
|
||||
struct ipu6_fw_isys_resp_info_abi *info);
|
||||
int ipu6_isys_queue_init(struct ipu6_isys_queue *aq);
|
||||
|
|
Loading…
Add table
Reference in a new issue