diff options
Diffstat (limited to 'sys/pci/simos.c')
-rw-r--r-- | sys/pci/simos.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/pci/simos.c b/sys/pci/simos.c index 413f7d7..bf12f5a 100644 --- a/sys/pci/simos.c +++ b/sys/pci/simos.c @@ -107,9 +107,8 @@ simos_attach(pcici_t config_id, int unit) struct simos_softc* sc; struct cam_devq *devq; - sc = malloc(sizeof(struct simos_softc), M_DEVBUF, M_WAITOK); + sc = malloc(sizeof(struct simos_softc), M_DEVBUF, M_WAITOK | M_ZERO); simosp[unit] = sc; - bzero(sc, sizeof *sc); sc->sc_unit = unit; sc->sc_regs = (SimOS_SCSI*) SIMOS_SCSI_ADDR; |