From d3c497e1c8fe0409977cc24f41f3432a54d7adc1 Mon Sep 17 00:00:00 2001 From: Brooks Davis Date: Wed, 17 Aug 2005 18:53:06 +0000 Subject: [PATCH] Remove an unnecessicary bzero that was zeroing the softc's struct ifnet pointer. Submitted by: brueffer Reviewed by: dfr --- sys/dev/firewire/if_fwip.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sys/dev/firewire/if_fwip.c b/sys/dev/firewire/if_fwip.c index 9fcfac65a09c..20916bc74300 100644 --- a/sys/dev/firewire/if_fwip.c +++ b/sys/dev/firewire/if_fwip.c @@ -175,7 +175,6 @@ fwip_attach(device_t dev) if (ifp == NULL) return (ENOSPC); - bzero(fwip, sizeof(struct fwip_softc)); /* XXX */ fwip->dma_ch = -1;