acpica: remove a superfluous NULL check
The address-of operator can't produce NULL (in practice). Remove an unnecessary NULL check. MFC after: 3 days Sponsored by: Dell EMC
This commit is contained in:
parent
aef5488faa
commit
7c640ca32e
@ -50,7 +50,7 @@ acpi_PkgInt(ACPI_OBJECT *res, int idx, UINT64 *dst)
|
||||
ACPI_OBJECT *obj;
|
||||
|
||||
obj = &res->Package.Elements[idx];
|
||||
if (obj == NULL || obj->Type != ACPI_TYPE_INTEGER)
|
||||
if (obj->Type != ACPI_TYPE_INTEGER)
|
||||
return (EINVAL);
|
||||
*dst = obj->Integer.Value;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user