diff options
| author | Justin Hibbits <jhibbits@FreeBSD.org> | 2020-03-06 01:50:15 +0000 |
|---|---|---|
| committer | Justin Hibbits <jhibbits@FreeBSD.org> | 2020-03-06 01:50:15 +0000 |
| commit | b21fe1ab67f0453418ddfd251b41d9eade10af10 (patch) | |
| tree | 639af20bb7bf510e1915a0d583da61018cae757c /sys/dev/mfi | |
| parent | 00797360b52bd2c0adbad4575054e3d9e2b4529f (diff) | |
Notes
Diffstat (limited to 'sys/dev/mfi')
| -rw-r--r-- | sys/dev/mfi/mfi_tbolt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/mfi/mfi_tbolt.c b/sys/dev/mfi/mfi_tbolt.c index d7397d2a2ccc..40ba160205ac 100644 --- a/sys/dev/mfi/mfi_tbolt.c +++ b/sys/dev/mfi/mfi_tbolt.c @@ -1109,7 +1109,7 @@ mfi_tbolt_send_frame(struct mfi_softc *sc, struct mfi_command *cm) if (hdr->cmd == MFI_CMD_PD_SCSI_IO) { /* check for inquiry commands coming from CLI */ - if (cdb[0] != 0x28 || cdb[0] != 0x2A) { + if (cdb[0] != 0x28 && cdb[0] != 0x2A) { if ((req_desc = mfi_tbolt_build_mpt_cmd(sc, cm)) == NULL) { device_printf(sc->mfi_dev, "Mapping from MFI " |
