mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	Input: stmfts - fix a & vs && typo
In stmfts_sysfs_hover_enable_write(), we should check value and
sdata->hover_enabled is all true.
Fixes: 78bcac7b2a ("Input: add support for the STMicroelectronics FingerTip touchscreen")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Link: https://lore.kernel.org/r/20200916141941.16684-1-yuehaibing@huawei.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
			
			
This commit is contained in:
		
							parent
							
								
									925145f9e9
								
							
						
					
					
						commit
						d04afe14b2
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -479,7 +479,7 @@ static ssize_t stmfts_sysfs_hover_enable_write(struct device *dev,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	mutex_lock(&sdata->mutex);
 | 
						mutex_lock(&sdata->mutex);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (value & sdata->hover_enabled)
 | 
						if (value && sdata->hover_enabled)
 | 
				
			||||||
		goto out;
 | 
							goto out;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (sdata->running)
 | 
						if (sdata->running)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue