mvme147.c (2d8ad8719591fa803b0d589ed057fa46f49b7155) | mvme147.c (408bb25ba50c6abaf516d844fd62556ec89a0af2) |
---|---|
1#include <linux/types.h> 2#include <linux/mm.h> 3#include <linux/blkdev.h> 4#include <linux/interrupt.h> 5 6#include <asm/page.h> 7#include <asm/pgtable.h> 8#include <asm/mvme147hw.h> --- 62 unchanged lines hidden (view full) --- 71 wd33c93_regs regs; 72 struct WD33C93_hostdata *hdata; 73 74 if (!MACH_IS_MVME147 || called) 75 return 0; 76 called++; 77 78 tpnt->proc_name = "MVME147"; | 1#include <linux/types.h> 2#include <linux/mm.h> 3#include <linux/blkdev.h> 4#include <linux/interrupt.h> 5 6#include <asm/page.h> 7#include <asm/pgtable.h> 8#include <asm/mvme147hw.h> --- 62 unchanged lines hidden (view full) --- 71 wd33c93_regs regs; 72 struct WD33C93_hostdata *hdata; 73 74 if (!MACH_IS_MVME147 || called) 75 return 0; 76 called++; 77 78 tpnt->proc_name = "MVME147"; |
79 tpnt->proc_info = &wd33c93_proc_info; | 79 tpnt->show_info = wd33c93_show_info, 80 tpnt->write_info = wd33c93_write_info, |
80 81 instance = scsi_register(tpnt, sizeof(struct WD33C93_hostdata)); 82 if (!instance) 83 goto err_out; 84 85 instance->base = 0xfffe4000; 86 instance->irq = MVME147_IRQ_SCSI_PORT; 87 regs.SASR = (volatile unsigned char *)0xfffe4000; --- 78 unchanged lines hidden --- | 81 82 instance = scsi_register(tpnt, sizeof(struct WD33C93_hostdata)); 83 if (!instance) 84 goto err_out; 85 86 instance->base = 0xfffe4000; 87 instance->irq = MVME147_IRQ_SCSI_PORT; 88 regs.SASR = (volatile unsigned char *)0xfffe4000; --- 78 unchanged lines hidden --- |