svn commit: r252304 - stable/8/sys/cam/scsi

Steven Hartland smh at FreeBSD.org
Thu Jun 27 10:58:31 UTC 2013


Author: smh
Date: Thu Jun 27 10:58:31 2013
New Revision: 252304
URL: http://svnweb.freebsd.org/changeset/base/252304

Log:
  MFC r252045:
  Corrected ATA Passthrough defines from decimal to hex

Modified:
  stable/8/sys/cam/scsi/scsi_all.h
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/cam/   (props changed)

Modified: stable/8/sys/cam/scsi/scsi_all.h
==============================================================================
--- stable/8/sys/cam/scsi/scsi_all.h	Thu Jun 27 10:55:35 2013	(r252303)
+++ stable/8/sys/cam/scsi/scsi_all.h	Thu Jun 27 10:58:31 2013	(r252304)
@@ -571,10 +571,10 @@ struct ata_pass_12 {
 #define	AP_PROTO_DMA_QUEUED	(0x07 << 1)
 #define	AP_PROTO_DEVICE_DIAG	(0x08 << 1)
 #define	AP_PROTO_DEVICE_RESET	(0x09 << 1)
-#define	AP_PROTO_UDMA_IN	(0x10 << 1)
-#define	AP_PROTO_UDMA_OUT	(0x11 << 1)
-#define	AP_PROTO_FPDMA		(0x12 << 1)
-#define	AP_PROTO_RESP_INFO	(0x15 << 1)
+#define	AP_PROTO_UDMA_IN	(0x0a << 1)
+#define	AP_PROTO_UDMA_OUT	(0x0b << 1)
+#define	AP_PROTO_FPDMA		(0x0c << 1)
+#define	AP_PROTO_RESP_INFO	(0x0f << 1)
 #define	AP_MULTI	0xe0
 	u_int8_t flags;
 #define	AP_T_LEN	0x03


More information about the svn-src-all mailing list