qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [4187] Fix few spelling issues in comments


From: Aurelien Jarno
Subject: [Qemu-devel] [4187] Fix few spelling issues in comments
Date: Fri, 11 Apr 2008 04:55:07 +0000

Revision: 4187
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4187
Author:   aurel32
Date:     2008-04-11 04:55:07 +0000 (Fri, 11 Apr 2008)

Log Message:
-----------
Fix few spelling issues in comments

(Stefan Weil)

Modified Paths:
--------------
    trunk/hw/e1000_hw.h
    trunk/hw/stellaris.c
    trunk/target-arm/helper.c
    trunk/target-arm/neon_helper.c

Modified: trunk/hw/e1000_hw.h
===================================================================
--- trunk/hw/e1000_hw.h 2008-04-09 16:32:48 UTC (rev 4186)
+++ trunk/hw/e1000_hw.h 2008-04-11 04:55:07 UTC (rev 4187)
@@ -734,7 +734,7 @@
     uint16_t special;
 };
 
-/* Receive Decriptor bit definitions */
+/* Receive Descriptor bit definitions */
 #define E1000_RXD_STAT_DD       0x01    /* Descriptor Done */
 #define E1000_RXD_STAT_EOP      0x02    /* End of Packet */
 #define E1000_RXD_STAT_IXSM     0x04    /* Ignore checksum */

Modified: trunk/hw/stellaris.c
===================================================================
--- trunk/hw/stellaris.c        2008-04-09 16:32:48 UTC (rev 4186)
+++ trunk/hw/stellaris.c        2008-04-11 04:55:07 UTC (rev 4187)
@@ -1,5 +1,5 @@
 /*
- * Luminary Micro Stellaris preipherals
+ * Luminary Micro Stellaris peripherals
  *
  * Copyright (c) 2006 CodeSourcery.
  * Written by Paul Brook

Modified: trunk/target-arm/helper.c
===================================================================
--- trunk/target-arm/helper.c   2008-04-09 16:32:48 UTC (rev 4186)
+++ trunk/target-arm/helper.c   2008-04-11 04:55:07 UTC (rev 4187)
@@ -1908,7 +1908,7 @@
 
 /* Signed saturating arithmetic.  */
 
-/* Perform 16-bit signed satruating addition.  */
+/* Perform 16-bit signed saturating addition.  */
 static inline uint16_t add16_sat(uint16_t a, uint16_t b)
 {
     uint16_t res;
@@ -1923,7 +1923,7 @@
     return res;
 }
 
-/* Perform 8-bit signed satruating addition.  */
+/* Perform 8-bit signed saturating addition.  */
 static inline uint8_t add8_sat(uint8_t a, uint8_t b)
 {
     uint8_t res;
@@ -1938,7 +1938,7 @@
     return res;
 }
 
-/* Perform 16-bit signed satruating subtraction.  */
+/* Perform 16-bit signed saturating subtraction.  */
 static inline uint16_t sub16_sat(uint16_t a, uint16_t b)
 {
     uint16_t res;
@@ -1953,7 +1953,7 @@
     return res;
 }
 
-/* Perform 8-bit signed satruating subtraction.  */
+/* Perform 8-bit signed saturating subtraction.  */
 static inline uint8_t sub8_sat(uint8_t a, uint8_t b)
 {
     uint8_t res;

Modified: trunk/target-arm/neon_helper.c
===================================================================
--- trunk/target-arm/neon_helper.c      2008-04-09 16:32:48 UTC (rev 4186)
+++ trunk/target-arm/neon_helper.c      2008-04-11 04:55:07 UTC (rev 4187)
@@ -726,7 +726,7 @@
 NEON_VOP(mul_u16, neon_u16, 2)
 #undef NEON_FN
 
-/* Polynomial multiplication is like integer multiplcation except the
+/* Polynomial multiplication is like integer multiplication except the
    partial products are XORed, not added.  */
 uint32_t HELPER(neon_mul_p8)(uint32_t op1, uint32_t op2)
 {






reply via email to

[Prev in Thread] Current Thread [Next in Thread]