From: io12 Date: Wed, 19 Oct 2016 21:37:53 +0000 (-0400) Subject: Fix grammar errors in a comment X-Git-Url: http://zhaoyanbai.com/repos/icons/static/gitweb.js?a=commitdiff_plain;h=9f11521a37bfb95426e4373d3586c13902e4517f;p=minix.git Fix grammar errors in a comment Change-Id: I0ad2b6a28afb44e42d1830f1b0944579dc032261 --- diff --git a/minix/kernel/arch/earm/bsp/ti/omap_serial.c b/minix/kernel/arch/earm/bsp/ti/omap_serial.c index 48408073e..3ca7f57ca 100644 --- a/minix/kernel/arch/earm/bsp/ti/omap_serial.c +++ b/minix/kernel/arch/earm/bsp/ti/omap_serial.c @@ -26,21 +26,21 @@ static struct omap_serial omap_serial = { static kern_phys_map serial_phys_map; /* - * 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. + * 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. * 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 * from VM with the new address to use. * - * We also anticipate on the beaglebone port an try to keep the differences between - * the drivers to a minimum by initializing a struct here and not using (to much) + * We also try on the BeagleBone port to keep the differences between the + * drivers to a minimum by initializing a struct here and not using (too many) * constants in the code. * * 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 bsp_ser_init(void)