aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dynamic_debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dynamic_debug.c')
0 files changed, 0 insertions, 0 deletions
bridge, MA 02139, USA. ** **----------------------------------------------------------------------------- */ /* * Many thanks to Richard Hirst <rhirst@linuxcare.com> for patiently * debugging this driver on the parisc architecture and suggesting * many improvements and bug fixes. * * Thanks also go to Linuxcare Inc. for providing several PARISC * machines for me to debug the driver on. */ #include <linux/kernel.h> #include <linux/module.h> #include <linux/init.h> #include <linux/types.h> #include <linux/stat.h> #include <linux/mm.h> #include <linux/blkdev.h> #include <linux/ioport.h> #include <linux/dma-mapping.h> #include <linux/slab.h> #include <asm/page.h> #include <asm/pgtable.h> #include <asm/irq.h> #include <asm/hardware.h> #include <asm/parisc-device.h> #include <asm/delay.h> #include <scsi/scsi_host.h> #include <scsi/scsi_device.h> #include <scsi/scsi_transport.h> #include <scsi/scsi_transport_spi.h> #include "53c700.h" MODULE_AUTHOR("James Bottomley"); MODULE_DESCRIPTION("lasi700 SCSI Driver"); MODULE_LICENSE("GPL"); #define LASI_700_SVERSION 0x00071 #define LASI_710_SVERSION 0x00082 #define LASI700_ID_TABLE { \ .hw_type = HPHW_FIO, \ .sversion = LASI_700_SVERSION, \ .hversion = HVERSION_ANY_ID, \ .hversion_rev = HVERSION_REV_ANY_ID, \