diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2014-10-17 02:05:07 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2014-10-17 02:05:07 +0000 |
commit | cc7d3bdde1846de549aedbb4286961a08087f319 (patch) | |
tree | 6e81f826720fe96fb7b708e047e2d069b4d67ddc /sys/dev/vscsi.c | |
parent | 92cc59ede83976bea3809cff76e08dd099531f8f (diff) |
convert old b functions to mem functions
Diffstat (limited to 'sys/dev/vscsi.c')
-rw-r--r-- | sys/dev/vscsi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/vscsi.c b/sys/dev/vscsi.c index d98615abcda..9e6f8de5c5b 100644 --- a/sys/dev/vscsi.c +++ b/sys/dev/vscsi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vscsi.c,v 1.33 2014/10/10 09:50:32 jmatthew Exp $ */ +/* $OpenBSD: vscsi.c,v 1.34 2014/10/17 02:05:06 tedu Exp $ */ /* * Copyright (c) 2008 David Gwynne <dlg@openbsd.org> @@ -156,7 +156,7 @@ vscsi_attach(struct device *parent, struct device *self, void *aux) sc->sc_link.openings = 16; sc->sc_link.pool = &sc->sc_iopool; - bzero(&saa, sizeof(saa)); + memset(&saa, 0, sizeof(saa)); saa.saa_sc_link = &sc->sc_link; sc->sc_scsibus = (struct scsibus_softc *)config_found(&sc->sc_dev, @@ -356,7 +356,7 @@ vscsi_i2t(struct vscsi_softc *sc, struct vscsi_ioc_i2t *i2t) i2t->tag = ccb->ccb_tag; i2t->target = link->target; i2t->lun = link->lun; - bcopy(xs->cmd, &i2t->cmd, xs->cmdlen); + memcpy(&i2t->cmd, xs->cmd, xs->cmdlen); i2t->cmdlen = xs->cmdlen; i2t->datalen = xs->datalen; @@ -455,7 +455,7 @@ vscsi_t2i(struct vscsi_softc *sc, struct vscsi_ioc_t2i *t2i) break; case VSCSI_STAT_SENSE: xs->error = XS_SENSE; - bcopy(&t2i->sense, &xs->sense, sizeof(xs->sense)); + memcpy(&xs->sense, &t2i->sense, sizeof(xs->sense)); break; case VSCSI_STAT_RESET: xs->error = XS_RESET; |