mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-10-31 08:44:41 +00:00 
			
		
		
		
	media: si21xx: use time_is_before_jiffies() instead of open coding it
Use the helper function time_is_{before,after}_jiffies() to improve
code readability.
Signed-off-by: Wang Qing <wangqing@vivo.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
			
			
This commit is contained in:
		
							parent
							
								
									fecd363ae2
								
							
						
					
					
						commit
						1bcf233f1b
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -336,7 +336,7 @@ static int si21xx_wait_diseqc_idle(struct si21xx_state *state, int timeout) | |||
| 	dprintk("%s\n", __func__); | ||||
| 
 | ||||
| 	while ((si21_readreg(state, LNB_CTRL_REG_1) & 0x8) == 8) { | ||||
| 		if (jiffies - start > timeout) { | ||||
| 		if (time_is_before_jiffies(start + timeout)) { | ||||
| 			dprintk("%s: timeout!!\n", __func__); | ||||
| 			return -ETIMEDOUT; | ||||
| 		} | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Wang Qing
						Wang Qing