mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
appletalk/ddp.c: Neaten checksum function
atalk_sum_partial can now use the rol16 function in bitops.h Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
fd5c002761
commit
f7a3a1d8af
1 changed files with 2 additions and 7 deletions
|
@ -922,13 +922,8 @@ static unsigned long atalk_sum_partial(const unsigned char *data,
|
|||
{
|
||||
/* This ought to be unwrapped neatly. I'll trust gcc for now */
|
||||
while (len--) {
|
||||
sum += *data;
|
||||
sum <<= 1;
|
||||
if (sum & 0x10000) {
|
||||
sum++;
|
||||
sum &= 0xffff;
|
||||
}
|
||||
data++;
|
||||
sum += *data++;
|
||||
sum = rol16(sum, 1);
|
||||
}
|
||||
return sum;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue