mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	ACPI: fan: Optimize struct acpi_fan_fif
We don't need u64 to store the information about _FIF. There are two booleans (fine_grain_ctrl and low_speed_notification) and one field step_size which can take value from 1-9. There are no internal users of revision field. So convert all fields to u8, by not directly extracting the _FIF info the struct. Use an intermediate buffer to extract and assign. This will help to do u32 math using these fields. No functional changes are expected. Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
		
							parent
							
								
									00ae053a05
								
							
						
					
					
						commit
						d445571fa3
					
				
					 2 changed files with 11 additions and 5 deletions
				
			
		| 
						 | 
					@ -30,10 +30,10 @@ struct acpi_fan_fps {
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct acpi_fan_fif {
 | 
					struct acpi_fan_fif {
 | 
				
			||||||
	u64 revision;
 | 
						u8 revision;
 | 
				
			||||||
	u64 fine_grain_ctrl;
 | 
						u8 fine_grain_ctrl;
 | 
				
			||||||
	u64 step_size;
 | 
						u8 step_size;
 | 
				
			||||||
	u64 low_speed_notification;
 | 
						u8 low_speed_notification;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct acpi_fan {
 | 
					struct acpi_fan {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -211,7 +211,8 @@ static int acpi_fan_get_fif(struct acpi_device *device)
 | 
				
			||||||
	struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
 | 
						struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
 | 
				
			||||||
	struct acpi_fan *fan = acpi_driver_data(device);
 | 
						struct acpi_fan *fan = acpi_driver_data(device);
 | 
				
			||||||
	struct acpi_buffer format = { sizeof("NNNN"), "NNNN" };
 | 
						struct acpi_buffer format = { sizeof("NNNN"), "NNNN" };
 | 
				
			||||||
	struct acpi_buffer fif = { sizeof(fan->fif), &fan->fif };
 | 
						u64 fields[4];
 | 
				
			||||||
 | 
						struct acpi_buffer fif = { sizeof(fields), fields };
 | 
				
			||||||
	union acpi_object *obj;
 | 
						union acpi_object *obj;
 | 
				
			||||||
	acpi_status status;
 | 
						acpi_status status;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -232,6 +233,11 @@ static int acpi_fan_get_fif(struct acpi_device *device)
 | 
				
			||||||
		status = -EINVAL;
 | 
							status = -EINVAL;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						fan->fif.revision = fields[0];
 | 
				
			||||||
 | 
						fan->fif.fine_grain_ctrl = fields[1];
 | 
				
			||||||
 | 
						fan->fif.step_size = fields[2];
 | 
				
			||||||
 | 
						fan->fif.low_speed_notification = fields[3];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
err:
 | 
					err:
 | 
				
			||||||
	kfree(obj);
 | 
						kfree(obj);
 | 
				
			||||||
	return status;
 | 
						return status;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue