]> Zhao Yanbai Git Server - minix.git/commitdiff
Fix grammar errors in a comment 68/3368/1
authorio12 <io12@users.noreply.github.com>
Wed, 19 Oct 2016 21:37:53 +0000 (17:37 -0400)
committerDavid van Moolenbroek <david@minix3.org>
Wed, 19 Oct 2016 21:51:07 +0000 (23:51 +0200)
Change-Id: I0ad2b6a28afb44e42d1830f1b0944579dc032261

minix/kernel/arch/earm/bsp/ti/omap_serial.c

index 48408073e276bec68880b71c3fb26b55aee7a475..3ca7f57cabf567f86bff0059ddf8883aa74898f9 100644 (file)
@@ -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
- * 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 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)