Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 120096
b: refs/heads/master
c: 1fdae0e
h: refs/heads/master
v: v3
  • Loading branch information
Nick Andrew authored and Paul Mundt committed Dec 22, 2008
1 parent 64bc050 commit 6bf7d5a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 77ba93a7ac5fb0d9338bffbf97c787b8efe00806
refs/heads/master: 1fdae0e59a3fc9e391d2422ddcfbdbdec1e8f724
4 changes: 2 additions & 2 deletions trunk/arch/sh/lib64/c-checksum.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 6bf7d5a

Please sign in to comment.