sb/intel/lynxpoint: Ensure that dev->chip_info is not null

Use either a regular null check or `config_of` to avoid bugs.

Change-Id: I36a01b898c3e62423f27c2940b5f875b73e36950
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/46665
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Angel Pons
2020-10-23 00:11:26 +02:00
parent 84fa224b53
commit cbcbb6767e
4 changed files with 28 additions and 26 deletions

View File

@@ -131,7 +131,7 @@ static void serialio_init_once(int acpi_mode)
static void serialio_init(struct device *dev)
{
struct southbridge_intel_lynxpoint_config *config = dev->chip_info;
struct southbridge_intel_lynxpoint_config *config = config_of(dev);
struct resource *bar0, *bar1;
int sio_index = -1;