2008-12-05 10:21:07

by Nick Andrew

[permalink] [raw]
Subject: [PATCH] Fix incorrect use of loose in c-checksum.c

Fix incorrect use of loose in c-checksum.c

It should be 'lose', not 'loose'.

Signed-off-by: Nick Andrew <[email protected]>
---

arch/sh/lib64/c-checksum.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/arch/sh/lib64/c-checksum.c b/arch/sh/lib64/c-checksum.c
index 5c284e0..73c0877 100644
--- a/arch/sh/lib64/c-checksum.c
+++ b/arch/sh/lib64/c-checksum.c
@@ -35,7 +35,7 @@ static inline unsigned short foldto16(unsigned long x)

static inline unsigned short myfoldto16(unsigned long long x)
{
- /* Fold down to 32-bits so we don't loose in the typedef-less
+ /* Fold down to 32-bits so we don't lose in the typedef-less
network stack. */
/* 64 to 33 */
x = (x & 0xffffffff) + (x >> 32);
@@ -199,7 +199,7 @@ __wsum csum_tcpudp_nofold(__be32 saddr, __be32 daddr,
result = (__force u64) saddr + (__force u64) daddr +
(__force u64) sum + ((len + proto) << 8);

- /* Fold down to 32-bits so we don't loose in the typedef-less
+ /* Fold down to 32-bits so we don't lose in the typedef-less
network stack. */
/* 64 to 33 */
result = (result & 0xffffffff) + (result >> 32);


2008-12-08 02:34:25

by Paul Mundt

[permalink] [raw]
Subject: Re: [PATCH] Fix incorrect use of loose in c-checksum.c

On Fri, Dec 05, 2008 at 02:07:57PM +1100, Nick Andrew wrote:
> Fix incorrect use of loose in c-checksum.c
>
> It should be 'lose', not 'loose'.
>
> Signed-off-by: Nick Andrew <[email protected]>

Applied.