mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	hwmon: (lm95234) fix coccinelle warnings
drivers/hwmon/lm95234.c:704:1-3: WARNING: PTR_RET can be used Use PTR_ERR_OR_ZERO rather than if(IS_ERR(...)) + PTR_ERR Generated by: coccinelle/api/ptr_ret.cocci CC: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
		
							parent
							
								
									4109a71608
								
							
						
					
					
						commit
						3ea85ba7af
					
				
					 1 changed files with 1 additions and 4 deletions
				
			
		| 
						 | 
					@ -701,10 +701,7 @@ static int lm95234_probe(struct i2c_client *client,
 | 
				
			||||||
	hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
 | 
						hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
 | 
				
			||||||
							   data,
 | 
												   data,
 | 
				
			||||||
							   lm95234_groups);
 | 
												   lm95234_groups);
 | 
				
			||||||
	if (IS_ERR(hwmon_dev))
 | 
						return PTR_ERR_OR_ZERO(hwmon_dev);
 | 
				
			||||||
		return PTR_ERR(hwmon_dev);
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	return 0;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* Driver data (common to all clients) */
 | 
					/* Driver data (common to all clients) */
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue