From f2b8744e59d9822031bcea2c2b6428c253eca13b Mon Sep 17 00:00:00 2001 From: scottl Date: Wed, 19 Jun 2013 05:11:30 +0000 Subject: [PATCH] Fix an unfortunate typo with the compat shims Obtained from: Netflix MFC after: now --- sys/cam/cam_compat.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/cam/cam_compat.h b/sys/cam/cam_compat.h index b23e7b27c7bf..53ead7a5bf4a 100644 --- a/sys/cam/cam_compat.h +++ b/sys/cam/cam_compat.h @@ -40,9 +40,9 @@ int cam_compat_ioctl(struct cdev *dev, u_long *cmd, caddr_t *addr, int *flag, st #define CAMIOCOMMAND_0x16 _IOWR(CAM_VERSION_0x16, 2, union ccb) #define CAMGETPASSTHRU_0x16 _IOWR(CAM_VERSION_0x16, 3, union ccb) -#define CAM_SCATTER_VALID_0x16 0x10 -#define CAM_SG_LIST_PHYS_0x16 0x40000 -#define CAM_DATA_PHYS_0x16 0x20000 +#define CAM_SCATTER_VALID_0x16 0x00000010 +#define CAM_SG_LIST_PHYS_0x16 0x00040000 +#define CAM_DATA_PHYS_0x16 0x00200000 #endif