aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/scsi/FlashPoint.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/scsi/FlashPoint.c b/drivers/scsi/FlashPoint.c
index d877a6a12aca..6089af003130 100644
--- a/drivers/scsi/FlashPoint.c
+++ b/drivers/scsi/FlashPoint.c
@@ -42,7 +42,6 @@
42 42
43 43
44 44
45typedef unsigned short * ushort_ptr;
46 45
47 46
48#define s08bits char 47#define s08bits char
@@ -6003,7 +6002,7 @@ static void FPT_scasid(unsigned char p_card, unsigned long p_port)
6003 unsigned char i,k,scam_id; 6002 unsigned char i,k,scam_id;
6004 unsigned char crcBytes[3]; 6003 unsigned char crcBytes[3];
6005 PNVRamInfo pCurrNvRam; 6004 PNVRamInfo pCurrNvRam;
6006 ushort_ptr pCrcBytes; 6005 unsigned short * pCrcBytes;
6007 6006
6008 pCurrNvRam = FPT_BL_Card[p_card].pNvRamInfo; 6007 pCurrNvRam = FPT_BL_Card[p_card].pNvRamInfo;
6009 6008
@@ -6023,7 +6022,7 @@ static void FPT_scasid(unsigned char p_card, unsigned long p_port)
6023 if (!(FPT_sciso(p_port,&temp_id_string[0]))) 6022 if (!(FPT_sciso(p_port,&temp_id_string[0])))
6024 { 6023 {
6025 if(pCurrNvRam){ 6024 if(pCurrNvRam){
6026 pCrcBytes = (ushort_ptr)&crcBytes[0]; 6025 pCrcBytes = (unsigned short *)&crcBytes[0];
6027 *pCrcBytes = FPT_CalcCrc16(&temp_id_string[0]); 6026 *pCrcBytes = FPT_CalcCrc16(&temp_id_string[0]);
6028 crcBytes[2] = FPT_CalcLrc(&temp_id_string[0]); 6027 crcBytes[2] = FPT_CalcLrc(&temp_id_string[0]);
6029 temp_id_string[1] = crcBytes[2]; 6028 temp_id_string[1] = crcBytes[2];