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:
Aaron Durbin 2016-05-10 08:43:56 -05:00
parent a486af46b2
commit 838125b3cd
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ static void lpc_init(struct device *dev)
scnt &= ~(SCNT_EN | SCNT_MODE); scnt &= ~(SCNT_EN | SCNT_MODE);
if (cfg->serirq_mode == SERIRQ_QUIET) if (cfg->serirq_mode == SERIRQ_QUIET)
scnt |= SCNT_EN; scnt |= SCNT_EN;
else if (cfg->serirq_mode == SERIRQ_CONTINUOUS); else if (cfg->serirq_mode == SERIRQ_CONTINUOUS)
scnt |= SCNT_EN | SCNT_MODE; scnt |= SCNT_EN | SCNT_MODE;
pci_write_config8(dev, REG_SERIRQ_CTL, scnt); pci_write_config8(dev, REG_SERIRQ_CTL, scnt);
} }