Remove extra arg from the call to ds_crc().

This commit is contained in:
bde 1995-08-25 19:50:15 +00:00
parent 51ebc86e1b
commit 1aed506e06
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);