mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-05 10:04:12 +08:00
platform/x86: int3472/discrete: Drop unnecessary obj->type == string check
acpi_evaluate_dsm_typed() already verifies the type is the requested type, so this error check is a no-op, drop it. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Link: https://lore.kernel.org/r/20230204110223.54625-1-hdegoede@redhat.com
This commit is contained in:
parent
42684d44a7
commit
23d18a2072
@ -78,14 +78,6 @@ skl_int3472_get_sensor_module_config(struct int3472_discrete_device *int3472)
|
||||
return ERR_PTR(-ENODEV);
|
||||
}
|
||||
|
||||
if (obj->string.type != ACPI_TYPE_STRING) {
|
||||
dev_err(int3472->dev,
|
||||
"Sensor _DSM returned a non-string value\n");
|
||||
|
||||
ACPI_FREE(obj);
|
||||
return ERR_PTR(-EINVAL);
|
||||
}
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(int3472_sensor_configs); i++) {
|
||||
if (!strcmp(int3472_sensor_configs[i].sensor_module_name,
|
||||
obj->string.pointer))
|
||||
|
Loading…
Reference in New Issue
Block a user