Lines Matching refs:elt
83 #define SCSI_DMA_WRITE_P(elt,val) \
86 tt_scsi_dma.elt##_lo = v & 0xff; \
88 tt_scsi_dma.elt##_lmd = v & 0xff; \
90 tt_scsi_dma.elt##_hmd = v & 0xff; \
92 tt_scsi_dma.elt##_hi = v & 0xff; \
95 #define SCSI_DMA_READ_P(elt) \
96 (((((((unsigned long)tt_scsi_dma.elt##_hi << 8) | \
97 (unsigned long)tt_scsi_dma.elt##_hmd) << 8) | \
98 (unsigned long)tt_scsi_dma.elt##_lmd) << 8) | \
99 (unsigned long)tt_scsi_dma.elt##_lo)