From 074a0ffc9b1ee983f7d8e7f0e48891dde25c7d3f Mon Sep 17 00:00:00 2001 From: hselasky Date: Tue, 17 Mar 2015 08:42:09 +0000 Subject: [PATCH] Use define instead of constant. Submitted by: Dmitry Luhtionov --- sys/dev/usb/storage/umass.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/dev/usb/storage/umass.c b/sys/dev/usb/storage/umass.c index e169abbfb53e..0b769c4d4652 100644 --- a/sys/dev/usb/storage/umass.c +++ b/sys/dev/usb/storage/umass.c @@ -2698,8 +2698,7 @@ umass_rbc_transform(struct umass_softc *sc, uint8_t *cmd_ptr, uint8_t cmd_len) case START_STOP_UNIT: case SYNCHRONIZE_CACHE: case WRITE_10: - case 0x2f: /* VERIFY_10 is absent from - * scsi_all.h??? */ + case VERIFY_10: case INQUIRY: case MODE_SELECT_10: case MODE_SENSE_10: -- 2.39.5