Fix grammar errors in a comment

Change-Id: I0ad2b6a28afb44e42d1830f1b0944579dc032261
This commit is contained in:
io12 2016-10-19 17:37:53 -04:00 committed by David van Moolenbroek
parent 022136b354
commit 9f11521a37

View File

@ -26,21 +26,21 @@ static struct omap_serial omap_serial = {
static kern_phys_map serial_phys_map; static kern_phys_map serial_phys_map;
/* /*
* In kernel serial for the omap. The serial driver like most other * In kernel serial for the omap. The serial driver, like most other
* drivers needs to be started early and even before the MMU is turned on. * drivers, needs to be started early and even before the MMU is turned on.
* We start by directly accessing the hardware memory address. Later on * We start by directly accessing the hardware memory address. Later on
* a when the MMU is turned on we still use a 1:1 mapping for these addresses. * when the MMU is turned on we still use a 1:1 mapping for these addresses.
* *
* Pretty soon we are going to remap these addresses at later stage. And this * Pretty soon we are going to remap these addresses at a later stage. And this
* requires us to use a dynamic base address. The idea is to receive a callback * requires us to use a dynamic base address. The idea is to receive a callback
* from VM with the new address to use. * from VM with the new address to use.
* *
* We also anticipate on the beaglebone port an try to keep the differences between * We also try on the BeagleBone port to keep the differences between the
* the drivers to a minimum by initializing a struct here and not using (to much) * drivers to a minimum by initializing a struct here and not using (too many)
* constants in the code. * constants in the code.
* *
* The serial driver also gets used in the "pre_init" stage before the kernel is loaded * The serial driver also gets used in the "pre_init" stage before the kernel is loaded
* in high memory so keep in mind there are two copies of this code in the kernel. * in high memory, so keep in mind there are two copies of this code in the kernel.
*/ */
void void
bsp_ser_init(void) bsp_ser_init(void)