Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 22607
b: refs/heads/master
c: 7f10166
h: refs/heads/master
i:
  22605: 50d91a9
  22603: 1300d19
  22599: 3bdee56
  22591: 84e09fe
v: v3
  • Loading branch information
Alexey Dobriyan authored and James Bottomley committed Mar 12, 2006
1 parent fe77c4f commit 454c976
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 69eb2ea47793366f59bfbc6e3c655b9c5047badd
refs/heads/master: 7f101662dd55aa16852ff6228ac496f56a259f5e
15 changes: 7 additions & 8 deletions trunk/drivers/scsi/FlashPoint.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ struct sccb;
typedef void (*CALL_BK_FN)(struct sccb *);


typedef struct SCCBMgr_info {
struct sccb_mgr_info {
unsigned long si_baseaddr;
unsigned char si_present;
unsigned char si_intvect;
Expand All @@ -79,9 +79,8 @@ typedef struct SCCBMgr_info {
unsigned char si_XlatInfo[4];
unsigned long si_reserved2[5];
unsigned long si_secondary_range;
} SCCBMGR_INFO;
};

typedef SCCBMGR_INFO * PSCCBMGR_INFO;


#define SCSI_PARITY_ENA 0x0001
Expand Down Expand Up @@ -309,7 +308,7 @@ typedef NVRAMINFO *PNVRamInfo;

typedef struct SCCBcard {
struct sccb * currentSCCB;
PSCCBMGR_INFO cardInfo;
struct sccb_mgr_info * cardInfo;

unsigned long ioPort;

Expand Down Expand Up @@ -1108,7 +1107,7 @@ static void (*FPT_s_PhaseTbl[8]) (unsigned long, unsigned char)= { 0 };
*
*---------------------------------------------------------------------*/

static int FlashPoint_ProbeHostAdapter(PSCCBMGR_INFO pCardInfo)
static int FlashPoint_ProbeHostAdapter(struct sccb_mgr_info * pCardInfo)
{
static unsigned char first_time = 1;

Expand Down Expand Up @@ -1386,7 +1385,7 @@ static int FlashPoint_ProbeHostAdapter(PSCCBMGR_INFO pCardInfo)
*
*---------------------------------------------------------------------*/

static unsigned long FlashPoint_HardwareResetHostAdapter(PSCCBMGR_INFO pCardInfo)
static unsigned long FlashPoint_HardwareResetHostAdapter(struct sccb_mgr_info * pCardInfo)
{
PSCCBcard CurrCard = NULL;
PNVRamInfo pCurrNvRam;
Expand Down Expand Up @@ -7788,14 +7787,14 @@ static unsigned char FPT_CalcLrc(unsigned char buffer[])
static inline unsigned char
FlashPoint__ProbeHostAdapter(struct FlashPoint_Info *FlashPointInfo)
{
return FlashPoint_ProbeHostAdapter((PSCCBMGR_INFO) FlashPointInfo);
return FlashPoint_ProbeHostAdapter((struct sccb_mgr_info *) FlashPointInfo);
}


static inline FlashPoint_CardHandle_T
FlashPoint__HardwareResetHostAdapter(struct FlashPoint_Info *FlashPointInfo)
{
return FlashPoint_HardwareResetHostAdapter((PSCCBMGR_INFO) FlashPointInfo);
return FlashPoint_HardwareResetHostAdapter((struct sccb_mgr_info *) FlashPointInfo);
}

static inline void
Expand Down

0 comments on commit 454c976

Please sign in to comment.