From 0a937754ee81ba7491d9687f9473096d8364e9f4 Mon Sep 17 00:00:00 2001 From: Angel Pons Date: Mon, 19 Apr 2021 13:01:09 +0200 Subject: sb/intel/x/sata.c: Use `get_int_option` for `sata_mode` Change-Id: Ifd1f3969281e67d1a6ab7eb99dd048799c0cb17d Signed-off-by: Angel Pons Reviewed-on: https://review.coreboot.org/c/coreboot/+/47108 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Rudolph --- src/southbridge/intel/i82801ix/sata.c | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'src/southbridge/intel/i82801ix') diff --git a/src/southbridge/intel/i82801ix/sata.c b/src/southbridge/intel/i82801ix/sata.c index 8ac9beea09..d2bee88e04 100644 --- a/src/southbridge/intel/i82801ix/sata.c +++ b/src/southbridge/intel/i82801ix/sata.c @@ -142,7 +142,6 @@ static void sata_init(struct device *const dev) const u16 devid = pci_read_config16(dev, PCI_DEVICE_ID); const int is_mobile = (devid == PCI_DEVICE_ID_INTEL_82801IBM_IEM_SATA_IDE_P01) || (devid == PCI_DEVICE_ID_INTEL_82801IBM_IEM_SATA_AHCI_P0145); - u8 sata_mode; printk(BIOS_DEBUG, "i82801ix_sata: initializing...\n"); @@ -152,9 +151,8 @@ static void sata_init(struct device *const dev) return; } - if (get_option(&sata_mode, "sata_mode") != CB_SUCCESS) - /* Default to AHCI */ - sata_mode = 0; + /* Default to AHCI */ + u8 sata_mode = get_int_option("sata_mode", 0); /* * TODO: In contrast to ICH7 and PCH code we don't set @@ -225,14 +223,11 @@ static void sata_enable(struct device *dev) const config_t *const config = dev->chip_info; u16 map = 0; - u8 sata_mode; if (!config) return; - if (get_option(&sata_mode, "sata_mode") != CB_SUCCESS) - /* Default to AHCI */ - sata_mode = 0; + u8 sata_mode = get_int_option("sata_mode", 0); /* * Set SATA controller mode early so the resource allocator can -- cgit v1.2.3