Commit 1654b2d6bf7bfa019c79f4112778853d1af0fd35
1 parent
5d20fa6b
Fix few spelling issues in comments
(Stefan Weil) git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4187 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
4 changed files
with
7 additions
and
7 deletions
hw/e1000_hw.h
| @@ -734,7 +734,7 @@ struct e1000_rx_desc { | @@ -734,7 +734,7 @@ struct e1000_rx_desc { | ||
| 734 | uint16_t special; | 734 | uint16_t special; |
| 735 | }; | 735 | }; |
| 736 | 736 | ||
| 737 | -/* Receive Decriptor bit definitions */ | 737 | +/* Receive Descriptor bit definitions */ |
| 738 | #define E1000_RXD_STAT_DD 0x01 /* Descriptor Done */ | 738 | #define E1000_RXD_STAT_DD 0x01 /* Descriptor Done */ |
| 739 | #define E1000_RXD_STAT_EOP 0x02 /* End of Packet */ | 739 | #define E1000_RXD_STAT_EOP 0x02 /* End of Packet */ |
| 740 | #define E1000_RXD_STAT_IXSM 0x04 /* Ignore checksum */ | 740 | #define E1000_RXD_STAT_IXSM 0x04 /* Ignore checksum */ |
hw/stellaris.c
target-arm/helper.c
| @@ -1908,7 +1908,7 @@ void cpu_arm_set_cp_io(CPUARMState *env, int cpnum, | @@ -1908,7 +1908,7 @@ void cpu_arm_set_cp_io(CPUARMState *env, int cpnum, | ||
| 1908 | 1908 | ||
| 1909 | /* Signed saturating arithmetic. */ | 1909 | /* Signed saturating arithmetic. */ |
| 1910 | 1910 | ||
| 1911 | -/* Perform 16-bit signed satruating addition. */ | 1911 | +/* Perform 16-bit signed saturating addition. */ |
| 1912 | static inline uint16_t add16_sat(uint16_t a, uint16_t b) | 1912 | static inline uint16_t add16_sat(uint16_t a, uint16_t b) |
| 1913 | { | 1913 | { |
| 1914 | uint16_t res; | 1914 | uint16_t res; |
| @@ -1923,7 +1923,7 @@ static inline uint16_t add16_sat(uint16_t a, uint16_t b) | @@ -1923,7 +1923,7 @@ static inline uint16_t add16_sat(uint16_t a, uint16_t b) | ||
| 1923 | return res; | 1923 | return res; |
| 1924 | } | 1924 | } |
| 1925 | 1925 | ||
| 1926 | -/* Perform 8-bit signed satruating addition. */ | 1926 | +/* Perform 8-bit signed saturating addition. */ |
| 1927 | static inline uint8_t add8_sat(uint8_t a, uint8_t b) | 1927 | static inline uint8_t add8_sat(uint8_t a, uint8_t b) |
| 1928 | { | 1928 | { |
| 1929 | uint8_t res; | 1929 | uint8_t res; |
| @@ -1938,7 +1938,7 @@ static inline uint8_t add8_sat(uint8_t a, uint8_t b) | @@ -1938,7 +1938,7 @@ static inline uint8_t add8_sat(uint8_t a, uint8_t b) | ||
| 1938 | return res; | 1938 | return res; |
| 1939 | } | 1939 | } |
| 1940 | 1940 | ||
| 1941 | -/* Perform 16-bit signed satruating subtraction. */ | 1941 | +/* Perform 16-bit signed saturating subtraction. */ |
| 1942 | static inline uint16_t sub16_sat(uint16_t a, uint16_t b) | 1942 | static inline uint16_t sub16_sat(uint16_t a, uint16_t b) |
| 1943 | { | 1943 | { |
| 1944 | uint16_t res; | 1944 | uint16_t res; |
| @@ -1953,7 +1953,7 @@ static inline uint16_t sub16_sat(uint16_t a, uint16_t b) | @@ -1953,7 +1953,7 @@ static inline uint16_t sub16_sat(uint16_t a, uint16_t b) | ||
| 1953 | return res; | 1953 | return res; |
| 1954 | } | 1954 | } |
| 1955 | 1955 | ||
| 1956 | -/* Perform 8-bit signed satruating subtraction. */ | 1956 | +/* Perform 8-bit signed saturating subtraction. */ |
| 1957 | static inline uint8_t sub8_sat(uint8_t a, uint8_t b) | 1957 | static inline uint8_t sub8_sat(uint8_t a, uint8_t b) |
| 1958 | { | 1958 | { |
| 1959 | uint8_t res; | 1959 | uint8_t res; |
target-arm/neon_helper.c
| @@ -726,7 +726,7 @@ NEON_VOP(mul_u8, neon_u8, 4) | @@ -726,7 +726,7 @@ NEON_VOP(mul_u8, neon_u8, 4) | ||
| 726 | NEON_VOP(mul_u16, neon_u16, 2) | 726 | NEON_VOP(mul_u16, neon_u16, 2) |
| 727 | #undef NEON_FN | 727 | #undef NEON_FN |
| 728 | 728 | ||
| 729 | -/* Polynomial multiplication is like integer multiplcation except the | 729 | +/* Polynomial multiplication is like integer multiplication except the |
| 730 | partial products are XORed, not added. */ | 730 | partial products are XORed, not added. */ |
| 731 | uint32_t HELPER(neon_mul_p8)(uint32_t op1, uint32_t op2) | 731 | uint32_t HELPER(neon_mul_p8)(uint32_t op1, uint32_t op2) |
| 732 | { | 732 | { |