diff options
author | Paul Menzel <pmenzel@molgen.mpg.de> | 2020-06-20 23:01:37 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-06-22 12:28:03 +0000 |
commit | feecdc2c0bac3dd4ebc1e24b047b9374a4d9d25d (patch) | |
tree | 7d3dfba5554425d10f57caca39d297ee002de486 /src | |
parent | 38c9b8045e16148eefd9dc3262484d87191dc354 (diff) | |
download | coreboot-feecdc2c0bac3dd4ebc1e24b047b9374a4d9d25d.tar.xz |
mb/emulation/qemu-i440fx,q35: Fix comment style
The comment fits in 96 characters, so do it, also getting rid of the
unwanted multi-line comment style.
Add a dot/period to the end of the sentence.
Change-Id: I7b5c7ea5da00d649aa06361e0e0cf2431874a6ec
Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/42615
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/emulation/qemu-i440fx/mainboard.c | 4 | ||||
-rw-r--r-- | src/mainboard/emulation/qemu-q35/mainboard.c | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/src/mainboard/emulation/qemu-i440fx/mainboard.c b/src/mainboard/emulation/qemu-i440fx/mainboard.c index 04bbb7d192..929743ac46 100644 --- a/src/mainboard/emulation/qemu-i440fx/mainboard.c +++ b/src/mainboard/emulation/qemu-i440fx/mainboard.c @@ -20,9 +20,7 @@ static void qemu_nb_init(struct device *dev) for (i = 0; i < 6; i++) pci_write_config8(dev, 0x5a + i, 0x33); - /* This sneaked in here, because Qemu does not - * emulate a SuperIO chip - */ + /* This sneaked in here, because Qemu does not emulate a SuperIO chip. */ pc_keyboard_init(NO_AUX_DEVICE); /* setup IRQ routing */ diff --git a/src/mainboard/emulation/qemu-q35/mainboard.c b/src/mainboard/emulation/qemu-q35/mainboard.c index c7e983ab6c..d329e5affb 100644 --- a/src/mainboard/emulation/qemu-q35/mainboard.c +++ b/src/mainboard/emulation/qemu-q35/mainboard.c @@ -26,9 +26,7 @@ static void qemu_nb_init(struct device *dev) pci_write_config8(dev, Q35_PAM0 + 5, 0x33); pci_write_config8(dev, Q35_PAM0 + 6, 0x33); - /* This sneaked in here, because Qemu does not - * emulate a SuperIO chip - */ + /* This sneaked in here, because Qemu does not emulate a SuperIO chip. */ pc_keyboard_init(NO_AUX_DEVICE); /* setup IRQ routing for pci slots */ |