media: stm32: dcmipp: correct error handling in dcmipp_create_subdevs
authorAlain Volmat <alain.volmat@foss.st.com>
Mon, 24 Jun 2024 08:41:22 +0000 (10:41 +0200)
committerHans Verkuil <hverkuil-cisco@xs4all.nl>
Thu, 27 Jun 2024 11:06:47 +0000 (13:06 +0200)
Correct error handling within the dcmipp_create_subdevs by properly
decrementing the i counter when releasing the subdeves.

Fixes: 28e0f3772296 ("media: stm32-dcmipp: STM32 DCMIPP camera interface driver")
Cc: stable@vger.kernel.org
Signed-off-by: Alain Volmat <alain.volmat@foss.st.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
drivers/media/platform/st/stm32/stm32-dcmipp/dcmipp-core.c

index 4acc3b90d03aa5d096a550b7997894cd5fb88ff0..4924ee36cfdaf522c2b2aa86ba160d089452ef30 100644 (file)
@@ -202,7 +202,7 @@ static int dcmipp_create_subdevs(struct dcmipp_device *dcmipp)
        return 0;
 
 err_init_entity:
-       while (i > 0)
+       while (i-- > 0)
                dcmipp->pipe_cfg->ents[i - 1].release(dcmipp->entity[i - 1]);
        return ret;
 }