intel/broadwell: fix typo
(pci_read_config32(...) > 14) & 0x3 looks rather unusual (and prevents "case 3" below from ever happening) Change-Id: Id90655c39ff53da9569441278bbf73497d643480 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Found-by: Coverity Scan #1293139 Reviewed-on: https://review.coreboot.org/15965 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
This commit is contained in:
parent
90ed31beac
commit
e8f2ef51e1
|
@ -99,7 +99,7 @@ static void root_port_config_update_gbe_port(void)
|
|||
static void pcie_iosf_port_grant_count(device_t dev)
|
||||
{
|
||||
u8 update_val;
|
||||
u32 rpcd = (pci_read_config32(dev, 0xfc) > 14) & 0x3;
|
||||
u32 rpcd = (pci_read_config32(dev, 0xfc) >> 14) & 0x3;
|
||||
|
||||
switch (rpcd) {
|
||||
case 1:
|
||||
|
|
Loading…
Reference in New Issue