From c4062c78a9d353d8d1f5250ab9bf65dda28c2b0c Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 11 Feb 2021 10:43:14 +0100 Subject: device: Add unit to Kconfig option name: `PRE_GRAPHICS_DELAY_MS` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It’s good practice to put the unit into the name. Change-Id: I1493f61d4e495c22f09abf1829bb2eab9b1fd2b6 Signed-off-by: Paul Menzel Reviewed-on: https://review.coreboot.org/c/coreboot/+/50517 Tested-by: build bot (Jenkins) Reviewed-by: Angel Pons Reviewed-by: Nico Huber --- src/device/pci_device.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/device/pci_device.c') diff --git a/src/device/pci_device.c b/src/device/pci_device.c index cd98f07605..161715fadd 100644 --- a/src/device/pci_device.c +++ b/src/device/pci_device.c @@ -734,8 +734,8 @@ static int should_load_oprom(struct device *dev) static void oprom_pre_graphics_stall(void) { - if (CONFIG_PRE_GRAPHICS_DELAY) - mdelay(CONFIG_PRE_GRAPHICS_DELAY); + if (CONFIG_PRE_GRAPHICS_DELAY_MS) + mdelay(CONFIG_PRE_GRAPHICS_DELAY_MS); } /** Default handler: only runs the relevant PCI BIOS. */ -- cgit v1.2.3