diff options
author | mux <mux@FreeBSD.org> | 2003-04-03 20:39:43 +0000 |
---|---|---|
committer | mux <mux@FreeBSD.org> | 2003-04-03 20:39:43 +0000 |
commit | d2962d1a1c8ab19f2664a801bd9f9077502ddc47 (patch) | |
tree | 2f2cc24dc4e5d5eece76d8af6e195f417d567934 | |
parent | 986a7d95d48b1860f0621503212d73300eae0ca4 (diff) | |
download | FreeBSD-src-d2962d1a1c8ab19f2664a801bd9f9077502ddc47.zip FreeBSD-src-d2962d1a1c8ab19f2664a801bd9f9077502ddc47.tar.gz |
Remove useless initialization.
-rw-r--r-- | sys/dev/fxp/if_fxp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/dev/fxp/if_fxp.c b/sys/dev/fxp/if_fxp.c index 9cc6582..6092215 100644 --- a/sys/dev/fxp/if_fxp.c +++ b/sys/dev/fxp/if_fxp.c @@ -701,7 +701,6 @@ fxp_attach(device_t dev) sc->fxp_desc.rx_head = sc->fxp_desc.rx_tail = NULL; for (i = 0; i < FXP_NRFABUFS; i++) { rxp = &sc->fxp_desc.rx_list[i]; - rxp->rx_mbuf = NULL; error = bus_dmamap_create(sc->fxp_mtag, 0, &rxp->rx_map); if (error) { device_printf(dev, "can't create DMA map for RX\n"); |