forked from mirrors/linux
		
	hwmon: (ad7414) fix checkpatch issues
fixed: WARNING: simple_strtol is obsolete, use kstrtol instead #133: FILE: ad7414.c:133: + long temp = simple_strtol(buf, NULL, 10); Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com> Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
This commit is contained in:
		
							parent
							
								
									e91aef22cd
								
							
						
					
					
						commit
						dcb7cb97ba
					
				
					 1 changed files with 5 additions and 1 deletions
				
			
		|  | @ -130,7 +130,11 @@ static ssize_t set_max_min(struct device *dev, | ||||||
| 	struct ad7414_data *data = i2c_get_clientdata(client); | 	struct ad7414_data *data = i2c_get_clientdata(client); | ||||||
| 	int index = to_sensor_dev_attr(attr)->index; | 	int index = to_sensor_dev_attr(attr)->index; | ||||||
| 	u8 reg = AD7414_REG_LIMIT[index]; | 	u8 reg = AD7414_REG_LIMIT[index]; | ||||||
| 	long temp = simple_strtol(buf, NULL, 10); | 	long temp; | ||||||
|  | 	int ret = kstrtol(buf, 10, &temp); | ||||||
|  | 
 | ||||||
|  | 	if (ret < 0) | ||||||
|  | 		return ret; | ||||||
| 
 | 
 | ||||||
| 	temp = SENSORS_LIMIT(temp, -40000, 85000); | 	temp = SENSORS_LIMIT(temp, -40000, 85000); | ||||||
| 	temp = (temp + (temp < 0 ? -500 : 500)) / 1000; | 	temp = (temp + (temp < 0 ? -500 : 500)) / 1000; | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue
	
	 Frans Meulenbroeks
						Frans Meulenbroeks