1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-20 02:38:43 +00:00

Remove extra arg from the call to ds_crc().

This commit is contained in:
Bruce Evans 1995-08-25 19:50:15 +00:00
parent 4238af7cd2
commit ac0418c3ae
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=10270
2 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@
* the SMC Elite Ultra (8216), the 3Com 3c503, the NE1000 and NE2000,
* and a variety of similar clones.
*
* $Id: if_ed.c,v 1.74 1995/07/25 22:18:54 bde Exp $
* $Id: if_ed.c,v 1.75 1995/07/28 12:15:16 davidg Exp $
*/
#include "ed.h"
@ -2558,7 +2558,7 @@ ds_getmcaf(sc, mcaf)
mcaf[1] = 0xffffffff;
return;
}
index = ds_crc(enm->enm_addrlo, 6) >> 26;
index = ds_crc(enm->enm_addrlo) >> 26;
af[index >> 3] |= 1 << (index & 7);
ETHER_NEXT_MULTI(step, enm);

View File

@ -13,7 +13,7 @@
* the SMC Elite Ultra (8216), the 3Com 3c503, the NE1000 and NE2000,
* and a variety of similar clones.
*
* $Id: if_ed.c,v 1.74 1995/07/25 22:18:54 bde Exp $
* $Id: if_ed.c,v 1.75 1995/07/28 12:15:16 davidg Exp $
*/
#include "ed.h"
@ -2558,7 +2558,7 @@ ds_getmcaf(sc, mcaf)
mcaf[1] = 0xffffffff;
return;
}
index = ds_crc(enm->enm_addrlo, 6) >> 26;
index = ds_crc(enm->enm_addrlo) >> 26;
af[index >> 3] |= 1 << (index & 7);
ETHER_NEXT_MULTI(step, enm);