m68k/scsi: gvp11 - Kill gvp11_scsiregs typedef
Acked-by: James Bottomley <James.Bottomley@suse.de> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
This commit is contained in:
parent
56522e39ab
commit
349d65fdc8
|
@ -27,7 +27,7 @@
|
|||
static irqreturn_t gvp11_intr(int irq, void *data)
|
||||
{
|
||||
struct Scsi_Host *instance = data;
|
||||
gvp11_scsiregs *regs = (gvp11_scsiregs *)(instance->base);
|
||||
struct gvp11_scsiregs *regs = (struct gvp11_scsiregs *)(instance->base);
|
||||
unsigned int status = regs->CNTR;
|
||||
unsigned long flags;
|
||||
|
||||
|
@ -51,7 +51,7 @@ static int dma_setup(struct scsi_cmnd *cmd, int dir_in)
|
|||
{
|
||||
struct Scsi_Host *instance = cmd->device->host;
|
||||
struct WD33C93_hostdata *hdata = shost_priv(instance);
|
||||
gvp11_scsiregs *regs = (gvp11_scsiregs *)(instance->base);
|
||||
struct gvp11_scsiregs *regs = (struct gvp11_scsiregs *)(instance->base);
|
||||
unsigned short cntr = GVP11_DMAC_INT_ENABLE;
|
||||
unsigned long addr = virt_to_bus(cmd->SCp.ptr);
|
||||
int bank_mask;
|
||||
|
@ -145,7 +145,7 @@ static int dma_setup(struct scsi_cmnd *cmd, int dir_in)
|
|||
static void dma_stop(struct Scsi_Host *instance, struct scsi_cmnd *SCpnt,
|
||||
int status)
|
||||
{
|
||||
gvp11_scsiregs *regs = (gvp11_scsiregs *)(instance->base);
|
||||
struct gvp11_scsiregs *regs = (struct gvp11_scsiregs *)(instance->base);
|
||||
struct WD33C93_hostdata *hdata = shost_priv(instance);
|
||||
|
||||
/* stop DMA */
|
||||
|
@ -169,7 +169,7 @@ static void dma_stop(struct Scsi_Host *instance, struct scsi_cmnd *SCpnt,
|
|||
}
|
||||
}
|
||||
|
||||
static int __init check_wd33c93(gvp11_scsiregs *regs)
|
||||
static int __init check_wd33c93(struct gvp11_scsiregs *regs)
|
||||
{
|
||||
#ifdef CHECK_WD33C93
|
||||
volatile unsigned char *sasr_3393, *scmd_3393;
|
||||
|
@ -258,7 +258,7 @@ int __init gvp11_detect(struct scsi_host_template *tpnt)
|
|||
struct zorro_dev *z = NULL;
|
||||
unsigned int default_dma_xfer_mask;
|
||||
struct WD33C93_hostdata *hdata;
|
||||
gvp11_scsiregs *regs;
|
||||
struct gvp11_scsiregs *regs;
|
||||
wd33c93_regs wdregs;
|
||||
int num_gvp11 = 0;
|
||||
|
||||
|
@ -301,7 +301,7 @@ int __init gvp11_detect(struct scsi_host_template *tpnt)
|
|||
if (!request_mem_region(address, 256, "wd33c93"))
|
||||
continue;
|
||||
|
||||
regs = (gvp11_scsiregs *)(ZTWO_VADDR(address));
|
||||
regs = (struct gvp11_scsiregs *)(ZTWO_VADDR(address));
|
||||
if (check_wd33c93(regs))
|
||||
goto release;
|
||||
|
||||
|
@ -399,7 +399,7 @@ static struct scsi_host_template driver_template = {
|
|||
int gvp11_release(struct Scsi_Host *instance)
|
||||
{
|
||||
#ifdef MODULE
|
||||
gvp11_scsiregs *regs = (gvp11_scsiregs *)(instance->base);
|
||||
struct gvp11_scsiregs *regs = (struct gvp11_scsiregs *)(instance->base);
|
||||
|
||||
regs->CNTR = 0;
|
||||
release_mem_region(ZTWO_PADDR(instance->base), 256);
|
||||
|
|
|
@ -30,7 +30,7 @@ int gvp11_release(struct Scsi_Host *);
|
|||
*/
|
||||
#define GVP11_XFER_MASK (0xff000001)
|
||||
|
||||
typedef struct {
|
||||
struct gvp11_scsiregs {
|
||||
unsigned char pad1[64];
|
||||
volatile unsigned short CNTR;
|
||||
unsigned char pad2[31];
|
||||
|
@ -46,7 +46,7 @@ typedef struct {
|
|||
volatile unsigned short SP_DMA;
|
||||
volatile unsigned short secret2; /* store 1 here */
|
||||
volatile unsigned short secret3; /* store 15 here */
|
||||
} gvp11_scsiregs;
|
||||
};
|
||||
|
||||
/* bits in CNTR */
|
||||
#define GVP11_DMAC_BUSY (1<<0)
|
||||
|
|
Loading…
Reference in New Issue