mpt2sas: Fix unsafe using smp_processor_id() in preemptible
[pandora-kernel.git] / drivers / scsi / tmscsim.h
index c3d8c80..77adc54 100644 (file)
@@ -57,7 +57,6 @@ u8            SGcount;
 
 u8             MsgCnt;
 u8             EndMessage;
-u8             SavedSGCount;                   
 
 u8             MsgInBuf[6];
 u8             MsgOutBuf[6];
@@ -258,13 +257,6 @@ struct dc390_srb   SRB_array[MAX_SRB_CNT];         /* 50 SRBs */
 #define H_BAD_CCB_OR_SG  0x1A
 #define H_ABORT         0x0FF
 
-/*; SCSI Status byte codes*/ 
-/* The values defined in include/scsi/scsi.h, to be shifted << 1 */
-
-#define SCSI_STAT_UNEXP_BUS_F  0xFD    /*;  Unexpect Bus Free */
-#define SCSI_STAT_BUS_RST_DETECT 0xFE  /*;  Scsi Bus Reset detected */
-#define SCSI_STAT_SEL_TIMEOUT  0xFF    /*;  Selection Time out */
-
 /* cmd->result */
 #define RES_TARGET             0x000000FF      /* Target State */
 #define RES_TARGET_LNX         STATUS_MASK     /* Only official ... */
@@ -273,7 +265,7 @@ struct dc390_srb    SRB_array[MAX_SRB_CNT];         /* 50 SRBs */
 #define RES_DRV                        0xFF000000      /* DRIVER_ codes */
 
 #define MK_RES(drv,did,msg,tgt) ((int)(drv)<<24 | (int)(did)<<16 | (int)(msg)<<8 | (int)(tgt))
-#define MK_RES_LNX(drv,did,msg,tgt) ((int)(drv)<<24 | (int)(did)<<16 | (int)(msg)<<8 | (int)(tgt)<<1)
+#define MK_RES_LNX(drv,did,msg,tgt) ((int)(drv)<<24 | (int)(did)<<16 | (int)(msg)<<8 | (int)(tgt))
 
 #define SET_RES_TARGET(who, tgt) do { who &= ~RES_TARGET; who |= (int)(tgt); } while (0)
 #define SET_RES_TARGET_LNX(who, tgt) do { who &= ~RES_TARGET_LNX; who |= (int)(tgt) << 1; } while (0)