summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorSteven Cole <elenstev@mesatop.com>2003-02-15 22:51:08 -0800
committerPaul Mackerras <paulus@samba.org>2003-02-15 22:51:08 -0800
commit7c8142e6a8a4855c6c151db8e71bbcac7e903c62 (patch)
tree8e54fd903dc8253c4451a599992d8f1624e379da /arch
parentb3f66ffc6fd0681f3ced03df023b7221b432b0bd (diff)
[PATCH] yet more pedantry: complement vs compliment.
A compliment is an expression of esteem, respect, affection, or admiration. As far as I can tell, this word does not yet have a place in the kernel source. A complement on the other hand, is what is meant in the following places.
Diffstat (limited to 'arch')
-rw-r--r--arch/alpha/lib/csum_ipv6_magic.S2
-rw-r--r--arch/ppc/kernel/irq.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/alpha/lib/csum_ipv6_magic.S b/arch/alpha/lib/csum_ipv6_magic.S
index 5a6e69c54d1f..e09748dbf2ed 100644
--- a/arch/alpha/lib/csum_ipv6_magic.S
+++ b/arch/alpha/lib/csum_ipv6_magic.S
@@ -84,7 +84,7 @@ csum_ipv6_magic:
extwl $0,2,$1 # e0 : fold 17-bit value
zapnot $0,3,$0 # .. e1 :
addq $0,$1,$0 # e0 :
- not $0,$0 # e1 : and compliment.
+ not $0,$0 # e1 : and complement.
zapnot $0,3,$0 # e0 :
ret # .. e1 :
diff --git a/arch/ppc/kernel/irq.c b/arch/ppc/kernel/irq.c
index 87f0f6fbd59c..a2cddb7f1c60 100644
--- a/arch/ppc/kernel/irq.c
+++ b/arch/ppc/kernel/irq.c
@@ -20,7 +20,7 @@
* The MPC8xx has an interrupt mask in the SIU. If a bit is set, the
* interrupt is _enabled_. As expected, IRQ0 is bit 0 in the 32-bit
* mask register (of which only 16 are defined), hence the weird shifting
- * and compliment of the cached_irq_mask. I want to be able to stuff
+ * and complement of the cached_irq_mask. I want to be able to stuff
* this right into the SIU SMASK register.
* Many of the prep/chrp functions are conditional compiled on CONFIG_8xx
* to reduce code space and undefined function references.