soc/intel/apollolake: remove errant semicolon
Remove a semicolon which shouldn't be there. Change-Id: I38f785fa13ea9fee91813f165a085ff54e1b75fb Found-by: Coverity Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: https://review.coreboot.org/14755 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
a486af46b2
commit
838125b3cd
|
@ -58,7 +58,7 @@ static void lpc_init(struct device *dev)
|
|||
scnt &= ~(SCNT_EN | SCNT_MODE);
|
||||
if (cfg->serirq_mode == SERIRQ_QUIET)
|
||||
scnt |= SCNT_EN;
|
||||
else if (cfg->serirq_mode == SERIRQ_CONTINUOUS);
|
||||
else if (cfg->serirq_mode == SERIRQ_CONTINUOUS)
|
||||
scnt |= SCNT_EN | SCNT_MODE;
|
||||
pci_write_config8(dev, REG_SERIRQ_CTL, scnt);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue