[media] media: davinci: vpif: fix array out of bound warnings
This patch fixes following array out of bound warnings, drivers/media/platform/davinci/vpif_display.c: In function 'vpif_remove': drivers/media/platform/davinci/vpif_display.c:1389:36: warning: iteration 1u invokes undefined behavior [-Waggressive-loop-optimizations] vb2_dma_contig_cleanup_ctx(common->alloc_ctx); ^ drivers/media/platform/davinci/vpif_display.c:1385:2: note: containing loop for (i = 0; i < VPIF_DISPLAY_MAX_DEVICES; i++) { ^ drivers/media/platform/davinci/vpif_capture.c: In function 'vpif_remove': drivers/media/platform/davinci/vpif_capture.c:1581:36: warning: iteration 1u invokes undefined behavior [-Waggressive-loop-optimizations] vb2_dma_contig_cleanup_ctx(common->alloc_ctx); ^ drivers/media/platform/davinci/vpif_capture.c:1577:2: note: containing loop for (i = 0; i < VPIF_CAPTURE_MAX_DEVICES; i++) { ^ drivers/media/platform/davinci/vpif_capture.c:1580:23: warning: array subscript is above array bounds [-Warray-bounds] common = &ch->common[i]; Reported-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Lad, Prabhakar <prabhakar.csengg@gmail.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
parent
48f2650a87
commit
e9b5872ce5
2 changed files with 2 additions and 2 deletions
|
@ -1577,7 +1577,7 @@ static int vpif_remove(struct platform_device *device)
|
||||||
for (i = 0; i < VPIF_CAPTURE_MAX_DEVICES; i++) {
|
for (i = 0; i < VPIF_CAPTURE_MAX_DEVICES; i++) {
|
||||||
/* Get the pointer to the channel object */
|
/* Get the pointer to the channel object */
|
||||||
ch = vpif_obj.dev[i];
|
ch = vpif_obj.dev[i];
|
||||||
common = &ch->common[i];
|
common = &ch->common[VPIF_VIDEO_INDEX];
|
||||||
vb2_dma_contig_cleanup_ctx(common->alloc_ctx);
|
vb2_dma_contig_cleanup_ctx(common->alloc_ctx);
|
||||||
/* Unregister video device */
|
/* Unregister video device */
|
||||||
video_unregister_device(ch->video_dev);
|
video_unregister_device(ch->video_dev);
|
||||||
|
|
|
@ -1385,7 +1385,7 @@ static int vpif_remove(struct platform_device *device)
|
||||||
for (i = 0; i < VPIF_DISPLAY_MAX_DEVICES; i++) {
|
for (i = 0; i < VPIF_DISPLAY_MAX_DEVICES; i++) {
|
||||||
/* Get the pointer to the channel object */
|
/* Get the pointer to the channel object */
|
||||||
ch = vpif_obj.dev[i];
|
ch = vpif_obj.dev[i];
|
||||||
common = &ch->common[i];
|
common = &ch->common[VPIF_VIDEO_INDEX];
|
||||||
vb2_dma_contig_cleanup_ctx(common->alloc_ctx);
|
vb2_dma_contig_cleanup_ctx(common->alloc_ctx);
|
||||||
/* Unregister video device */
|
/* Unregister video device */
|
||||||
video_unregister_device(ch->video_dev);
|
video_unregister_device(ch->video_dev);
|
||||||
|
|
Loading…
Add table
Reference in a new issue