diff options
author | Martin Roth <martin.roth@se-eng.com> | 2014-12-09 13:51:49 -0700 |
---|---|---|
committer | Martin Roth <gaumless@gmail.com> | 2014-12-17 02:30:12 +0100 |
commit | 226db05a15a0c6ee55a500117307bdcf119a1822 (patch) | |
tree | ea68081d47298de7ee49c23b95845cda649765a1 /src/southbridge/sis/sis966/sis761.c | |
parent | 474313d1b6556ad8b3e6750a4096b5735cbfc846 (diff) |
southbridge/sis: Spelling/comment fixes
Change-Id: I6a0f5406fb3bc3e8aa3a1111b1d702f530c9329b
Signed-off-by: Martin Roth <martin.roth@se-eng.com>
Reviewed-on: http://review.coreboot.org/7733
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/southbridge/sis/sis966/sis761.c')
-rw-r--r-- | src/southbridge/sis/sis966/sis761.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/southbridge/sis/sis966/sis761.c b/src/southbridge/sis/sis966/sis761.c index 79a64f91bf..c92b666f2c 100644 --- a/src/southbridge/sis/sis966/sis761.c +++ b/src/southbridge/sis/sis966/sis761.c @@ -22,7 +22,7 @@ /* * Turn off machine check triggers when reading * pci space where there are no devices. - * This is necessary when scaning the bus for + * This is necessary when scanning the bus for * devices which is done by the kernel * * written in 2003 by Eric Biederman @@ -57,13 +57,13 @@ static inline msr_t rdmsr(unsigned index) /** * Read resources for AGP aperture. * - * There is only one AGP aperture resource needed. The resoruce is added to + * There is only one AGP aperture resource needed. The resource is added to * the northbridge of BSP. * * The same trick can be used to augment legacy VGA resources which can * be detect by generic PCI resource allocator for VGA devices. * BAD: it is more tricky than I think, the resource allocation code is - * implemented in a way to NOT DOING legacy VGA resource allcation on + * implemented in a way to NOT DOING legacy VGA resource allocation on * purpose :-(. * * @param dev TODO @@ -74,7 +74,7 @@ static void sis761_read_resources(device_t dev) printk(BIOS_DEBUG, "sis761_read_resources ------->\n"); pci_dev_read_resources(dev); - /* If we are not the first processor don't allocate the gart apeture */ + /* If we are not the first processor don't allocate the gart aperture */ if (dev->path.pci.devfn != PCI_DEVFN(0x0, 0)) { printk(BIOS_DEBUG, "sis761_not_the_first_processor !!!\n"); return; |