svn commit: r280165 - head/sys/dev/usb/storage
Hans Petter Selasky
hselasky at FreeBSD.org
Tue Mar 17 08:42:10 UTC 2015
Author: hselasky
Date: Tue Mar 17 08:42:09 2015
New Revision: 280165
URL: https://svnweb.freebsd.org/changeset/base/280165
Log:
Use define instead of constant.
Submitted by: Dmitry Luhtionov <dmitryluhtionov at gmail.com>
Modified:
head/sys/dev/usb/storage/umass.c
Modified: head/sys/dev/usb/storage/umass.c
==============================================================================
--- head/sys/dev/usb/storage/umass.c Tue Mar 17 08:23:46 2015 (r280164)
+++ head/sys/dev/usb/storage/umass.c Tue Mar 17 08:42:09 2015 (r280165)
@@ -2698,8 +2698,7 @@ umass_rbc_transform(struct umass_softc *
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:
More information about the svn-src-all
mailing list