diff options
Diffstat (limited to 'drivers/media/platform/intel/pxa_camera.c')
| -rw-r--r-- | drivers/media/platform/intel/pxa_camera.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/platform/intel/pxa_camera.c b/drivers/media/platform/intel/pxa_camera.c index 35145e3348f0..54270d6b6f50 100644 --- a/drivers/media/platform/intel/pxa_camera.c +++ b/drivers/media/platform/intel/pxa_camera.c @@ -854,7 +854,7 @@ fail:  	return -ENOMEM;  } -static void pxa_videobuf_set_actdma(struct pxa_camera_dev *pcdev, +static void pxa_video_buf_set_actdma(struct pxa_camera_dev *pcdev,  				    struct pxa_buffer *buf)  {  	buf->active_dma = DMA_Y; @@ -973,7 +973,7 @@ static void pxa_camera_wakeup(struct pxa_camera_dev *pcdev,   * stopped. This means the tailed buffer would never be transferred by DMA.   * This function restarts the capture for this corner case, where :   *  - DADR() == DADDR_STOP - *  - a videobuffer is queued on the pcdev->capture list + *  - a video buffer is queued on the pcdev->capture list   *   * Please check the "DMA hot chaining timeslice issue" in   *   Documentation/driver-api/media/drivers/pxa_camera.rst @@ -1163,7 +1163,7 @@ static void pxa_camera_eof(struct tasklet_struct *t)  	pcdev->active = list_first_entry(&pcdev->capture,  					 struct pxa_buffer, queue);  	buf = pcdev->active; -	pxa_videobuf_set_actdma(pcdev, buf); +	pxa_video_buf_set_actdma(pcdev, buf);  	pxa_dma_start_channels(pcdev);  } @@ -1416,7 +1416,7 @@ static int pxac_vb2_prepare(struct vb2_buffer *vb)  	 * the actual buffer is yours  	 */  	buf->inwork = 0; -	pxa_videobuf_set_actdma(pcdev, buf); +	pxa_video_buf_set_actdma(pcdev, buf);  	return ret;  }  |