soc/intel/skylake: Correct GPIO pointer assignment
We need to store the acpi_gpio struct, not save its address. Found-by: Clang Static Analyzer Signed-off-by: Jacob Garber <jgarber1@ualberta.ca> Change-Id: I41c8bf10ce72bec736da97ccc33f9ada49804dc1 Reviewed-on: https://review.coreboot.org/c/coreboot/+/32797 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
parent
6644a75b0e
commit
e1909eea5c
|
@ -35,7 +35,7 @@ int sd_fill_soc_gpio_info(struct acpi_gpio* gpio, struct device *dev)
|
|||
gpio->pin_count = 1;
|
||||
gpio->pins[0] = config->sdcard_cd_gpio_default;
|
||||
} else
|
||||
gpio = &config->sdcard_cd_gpio;
|
||||
*gpio = config->sdcard_cd_gpio;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue