Revert r290327. The compiler warnings seems to be specific to clang v3.5 only.

This commit is contained in:
Hans Petter Selasky 2015-11-03 09:38:39 +00:00
parent b4f0cda47b
commit 94bceb529a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=290328
2 changed files with 5 additions and 6 deletions

View File

@ -549,8 +549,7 @@ bbb_command_start(struct bbb_transfer *sc, uint8_t dir, uint8_t lun,
sc->cmd_len = cmd_len;
memset(&sc->cbw->CBWCDB, 0, sizeof(sc->cbw->CBWCDB));
memcpy(&sc->cbw->CBWCDB, cmd_ptr, cmd_len);
DPRINTFN(1, "SCSI cmd = %*D\n", (int)cmd_len,
(unsigned char *)sc->cbw->CBWCDB, ":");
DPRINTFN(1, "SCSI cmd = %*D\n", (int)cmd_len, (char *)sc->cbw->CBWCDB, ":");
mtx_lock(&sc->mtx);
usbd_transfer_start(sc->xfer[sc->state]);
@ -581,7 +580,7 @@ bbb_raw_write(struct bbb_transfer *sc, const void *data_ptr, size_t data_len,
sc->error = 0;
DPRINTFN(1, "BULK DATA = %*D\n", (int)data_len,
(const unsigned char *)data_ptr, ":");
(const char *)data_ptr, ":");
mtx_lock(&sc->mtx);
usbd_transfer_start(sc->xfer[0]);

View File

@ -703,14 +703,14 @@ zyd_intr_read_callback(struct usb_xfer *xfer, usb_error_t error)
memcpy(rqp->odata, cmd->data, rqp->olen);
DPRINTF(sc, ZYD_DEBUG_CMD,
"command %p complete, data = %*D \n",
rqp, rqp->olen, (unsigned char *)rqp->odata, ":");
rqp, rqp->olen, (char *)rqp->odata, ":");
wakeup(rqp); /* wakeup caller */
break;
}
if (rqp == NULL) {
device_printf(sc->sc_dev,
"unexpected IORD notification %*D\n",
datalen, (unsigned char *)cmd->data, ":");
datalen, cmd->data, ":");
}
break;
}
@ -802,7 +802,7 @@ zyd_cmd(struct zyd_softc *sc, uint16_t code, const void *idata, int ilen,
cmd.code = htole16(code);
memcpy(cmd.data, idata, ilen);
DPRINTF(sc, ZYD_DEBUG_CMD, "sending cmd %p = %*D\n",
&rq, ilen, (unsigned char *)idata, ":");
&rq, ilen, idata, ":");
rq.cmd = &cmd;
rq.idata = idata;