mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-10-31 16:54:21 +00:00 
			
		
		
		
	video: s3c-fb: fix typo in definition of VIDCON1_VSTATUS_FRONTPORCH value
The correct value for VIDCON1_VSTATUS_FRONTPORCH is 3, not 0. Signed-off-by: Tomasz Figa <t.figa@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Jingoo Han <jg1.han@samsung.com> Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
		
							parent
							
								
									90dd0b0725
								
							
						
					
					
						commit
						678268e534
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -82,7 +82,7 @@ | |||
| #define VIDCON1_VSTATUS_VSYNC			(0x0 << 13) | ||||
| #define VIDCON1_VSTATUS_BACKPORCH		(0x1 << 13) | ||||
| #define VIDCON1_VSTATUS_ACTIVE			(0x2 << 13) | ||||
| #define VIDCON1_VSTATUS_FRONTPORCH		(0x0 << 13) | ||||
| #define VIDCON1_VSTATUS_FRONTPORCH		(0x3 << 13) | ||||
| #define VIDCON1_VCLK_MASK			(0x3 << 9) | ||||
| #define VIDCON1_VCLK_HOLD			(0x0 << 9) | ||||
| #define VIDCON1_VCLK_RUN			(0x1 << 9) | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Tomasz Figa
						Tomasz Figa