Searched refs:discenable (Results 1 - 8 of 8) sorted by relevance

/drivers/scsi/aic7xxx/
H A Daic7770.c322 uint16_t discenable; local
325 discenable = 0;
335 discenable |= (0x01 << i);
338 ahc_outb(ahc, DISC_DSB, ~(discenable & 0xff));
339 ahc_outb(ahc, DISC_DSB + 1, ~((discenable >> 8) & 0xff));
H A Daic7xxx_pci.c1418 uint16_t discenable; local
1421 discenable = 0;
1442 discenable |= target_mask;
1520 ahc_outb(ahc, DISC_DSB, ~(discenable & 0xff));
1521 ahc_outb(ahc, DISC_DSB + 1, ~((discenable >> 8) & 0xff));
H A Daic7xxx.h725 uint16_t discenable; /* Disconnection allowed */ member in struct:ahc_tmode_tstate
H A Daic79xx.h778 uint16_t discenable; /* Disconnection allowed */ member in struct:ahd_tmode_tstate
H A Daic7xxx_core.c5277 u_int discenable; local
5471 discenable = ALL_TARGETS_MASK;
5475 discenable = ~((ahc_inb(ahc, DISC_DSB + 1) << 8)
5585 ahc->user_discenable = discenable;
H A Daic79xx_core.c7666 tstate->discenable |= target_mask;
7748 tstate->discenable &= ~target_mask;
7751 tstate->discenable |= target_mask;
/drivers/scsi/aic7xxx_old/
H A Daic7xxx_proc.c245 size += sprintf(BLS, "Disconnect Enable Flags: 0x%04x\n", p->discenable);
/drivers/scsi/
H A Daic7xxx_old.c951 unsigned short discenable; /* Gets downloaded to card as a bitmap */ member in struct:aic7xxx_host
6642 if (!(p->discenable & (1 << tindex)))
8641 p->discenable = 0;
8676 p->discenable =
8680 sc->device_flags[i] = (p->discenable & mask) ? CFDISC : 0;
8727 p->discenable |= mask;
8831 aic_outb(p, ~(p->discenable & 0xFF), DISC_DSB);
8832 aic_outb(p, ~((p->discenable >> 8) & 0xFF), DISC_DSB + 1);
10134 if (p->discenable & mask)

Completed in 1804 milliseconds