broadcom/bcm5785: don't treat KBC-DATA as COM1

Add a break statement instead.
While there, fix a bunch of typos in comments.

Change-Id: I465c0188d4b46eabf8d17e69fa0fdc6a9c2ad66e
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Found-by: Coverity Scan #1229645
Reviewed-on: https://review.coreboot.org/18013
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
Patrick Georgi 2017-01-02 13:14:18 +01:00 committed by Patrick Georgi
parent fe2fc83936
commit 384ebc610d
1 changed files with 4 additions and 4 deletions

View File

@ -87,18 +87,18 @@ static void bcm5785_lpc_enable_childrens_resources(device_t dev)
switch(base) {
case 0x60: //KBC
case 0x64:
reg |= (1<<29);
reg |= (1<<29); break;
case 0x3f8: // COM1
reg |= (1<<6); break;
case 0x2f8: // COM2
reg |= (1<<7); break;
case 0x378: // Parallal 1
case 0x378: // Parallel 1
reg |= (1<<0); break;
case 0x3f0: // FD0
reg |= (1<<26); break;
case 0x220: // Aduio 0
case 0x220: // Audio 0
reg |= (1<<14); break;
case 0x300: // Midi 0
case 0x300: // MIDI 0
reg |= (1<<18); break;
}
}