summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/if_cue.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/usb/if_cue.c')
-rw-r--r--sys/dev/usb/if_cue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/if_cue.c b/sys/dev/usb/if_cue.c
index 5fcf114..8983b82 100644
--- a/sys/dev/usb/if_cue.c
+++ b/sys/dev/usb/if_cue.c
@@ -365,7 +365,7 @@ cue_setmulti(struct cue_softc *sc)
if (ifma->ifma_addr->sa_family != AF_LINK)
continue;
h = cue_crc(LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
- sc->cue_mctab[h >> 3] |= 1 << (h & 0x7);
+ sc->cue_mctab[h >> 3] |= 1 << (h & 0x7);
}
/*
@@ -374,7 +374,7 @@ cue_setmulti(struct cue_softc *sc)
*/
if (ifp->if_flags & IFF_BROADCAST) {
h = cue_crc(ifp->if_broadcastaddr);
- sc->cue_mctab[h >> 3] |= 1 << (h & 0x7);
+ sc->cue_mctab[h >> 3] |= 1 << (h & 0x7);
}
cue_mem(sc, CUE_CMD_WRITESRAM, CUE_MCAST_TABLE_ADDR,
OpenPOWER on IntegriCloud