diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2005-11-11 12:17:31 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2005-11-11 12:17:31 +0000 |
| commit | f5071cacb179ee84e45932530401a210b341a6c9 (patch) | |
| tree | 0661ceef4cecc549393ddd1aff0d169d386cb8b6 /sys/dev/ex | |
| parent | 58d7d1a8fa4790560c0610350cb76ceb9cbd9ce8 (diff) | |
Notes
Diffstat (limited to 'sys/dev/ex')
| -rw-r--r-- | sys/dev/ex/if_ex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ex/if_ex.c b/sys/dev/ex/if_ex.c index 3c1296f0b86f..24425b66869e 100644 --- a/sys/dev/ex/if_ex.c +++ b/sys/dev/ex/if_ex.c @@ -892,7 +892,7 @@ ex_setmulti(struct ex_softc *sc) /* Program our MAC address as well */ /* XXX: Is this necessary? The Linux driver does this * but the NetBSD driver does not */ - addr = (uint16_t*)(&IFP2ENADDR(sc->ifp)); + addr = (uint16_t*)(IFP2ENADDR(sc->ifp)); CSR_WRITE_2(sc, IO_PORT_REG, *addr++); CSR_WRITE_2(sc, IO_PORT_REG, *addr++); CSR_WRITE_2(sc, IO_PORT_REG, *addr++); |
