Message ID | 20231017144756.34719-1-benjamin.gaignard@collabora.com |
---|---|
Headers | show |
Series | Add DELETE_BUF ioctl | expand |
On 17/10/2023 16:47, Benjamin Gaignard wrote: > Use vb2_get_num_buffers() to avoid using queue num_buffers field directly. > This allows us to change how the number of buffers is computed in the > futur. futur -> future This is probably spelled wrong in other places, please check! Regards, Hans > > Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com> > CC: Joseph Liu <kwliu@nuvoton.com> > CC: Marvin Lin <kflin@nuvoton.com> > --- > drivers/media/platform/nuvoton/npcm-video.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/media/platform/nuvoton/npcm-video.c b/drivers/media/platform/nuvoton/npcm-video.c > index b9e6782f59b4..f9b4e36a5175 100644 > --- a/drivers/media/platform/nuvoton/npcm-video.c > +++ b/drivers/media/platform/nuvoton/npcm-video.c > @@ -393,7 +393,7 @@ static void npcm_video_free_diff_table(struct npcm_video *video) > struct rect_list *tmp; > unsigned int i; > > - for (i = 0; i < video->queue.num_buffers; i++) { > + for (i = 0; i < vb2_get_num_buffers(&video->queue); i++) { > head = &video->list[i]; > list_for_each_safe(pos, nx, head) { > tmp = list_entry(pos, struct rect_list, list);
Subject line doesn't mention 'airspy:' Regards, Hans On 17/10/2023 16:47, Benjamin Gaignard wrote: > Use vb2_get_num_buffers() to avoid using queue num_buffers field directly. > This allows us to change how the number of buffers is computed in the > futur. > > Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com> > --- > drivers/media/usb/airspy/airspy.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/drivers/media/usb/airspy/airspy.c b/drivers/media/usb/airspy/airspy.c > index 462eb8423506..e24e655fb1db 100644 > --- a/drivers/media/usb/airspy/airspy.c > +++ b/drivers/media/usb/airspy/airspy.c > @@ -482,12 +482,13 @@ static int airspy_queue_setup(struct vb2_queue *vq, > unsigned int *nplanes, unsigned int sizes[], struct device *alloc_devs[]) > { > struct airspy *s = vb2_get_drv_priv(vq); > + unsigned int q_num_bufs = vb2_get_num_buffers(vq); > > dev_dbg(s->dev, "nbuffers=%d\n", *nbuffers); > > /* Need at least 8 buffers */ > - if (vq->num_buffers + *nbuffers < 8) > - *nbuffers = 8 - vq->num_buffers; > + if (q_num_bufs + *nbuffers < 8) > + *nbuffers = 8 - q_num_bufs; > *nplanes = 1; > sizes[0] = PAGE_ALIGN(s->buffersize); >