mirror of
				https://github.com/Ysurac/openmptcprouter.git
				synced 2025-03-09 15:40:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			858 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			858 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
From c2724a3e60e77711fb6ebf31967be51b866246b6 Mon Sep 17 00:00:00 2001
 | 
						|
From: Naushir Patuck <naush@raspberrypi.com>
 | 
						|
Date: Thu, 25 Nov 2021 08:59:58 +0000
 | 
						|
Subject: [PATCH 590/828] drivers: bcm2835_isp: Fix div by 0 bug.
 | 
						|
 | 
						|
Fix a possible division by 0 bug when setting up the mmal port for the stats
 | 
						|
port.
 | 
						|
 | 
						|
Signed-off-by: Naushir Patuck <naush@raspberrypi.com>
 | 
						|
---
 | 
						|
 drivers/staging/vc04_services/bcm2835-isp/bcm2835-isp-fmts.h | 1 +
 | 
						|
 1 file changed, 1 insertion(+)
 | 
						|
 | 
						|
--- a/drivers/staging/vc04_services/bcm2835-isp/bcm2835-isp-fmts.h
 | 
						|
+++ b/drivers/staging/vc04_services/bcm2835-isp/bcm2835-isp-fmts.h
 | 
						|
@@ -544,6 +544,7 @@ static const struct bcm2835_isp_fmt supp
 | 
						|
 		.step_size	    = 2,
 | 
						|
 	}, {
 | 
						|
 		.fourcc		    = V4L2_META_FMT_BCM2835_ISP_STATS,
 | 
						|
+		.depth		    = 8,
 | 
						|
 		.mmal_fmt	    = MMAL_ENCODING_BRCM_STATS,
 | 
						|
 		/* The rest are not valid fields for stats. */
 | 
						|
 	}
 |