Anastasia Klimchuk has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/56820 )
Change subject: nicintel_eeprom: Delete extra parentheses from if condition ......................................................................
nicintel_eeprom: Delete extra parentheses from if condition
BUG=185191942 TEST=builds
Change-Id: I068bd227668a79f14e38e703a5a49db18d5de8c7 Signed-off-by: Anastasia Klimchuk aklm@chromium.org --- M nicintel_eeprom.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/20/56820/1
diff --git a/nicintel_eeprom.c b/nicintel_eeprom.c index b5f2050..430a980 100644 --- a/nicintel_eeprom.c +++ b/nicintel_eeprom.c @@ -466,7 +466,7 @@ return 1;
nicintel_pci = dev; - if ((dev->device_id != UNPROG_DEVICE)) { + if (dev->device_id != UNPROG_DEVICE) { uint32_t eec = pci_mmio_readl(nicintel_eebar + EEC);
/* C.f. 3.3.1.5 for the detection mechanism (maybe? contradicting