Home
last modified time | relevance | path

Searched refs:INST_MINOR_SHIFT (Results 1 – 6 of 6) sorted by relevance

/titanic_50/usr/src/uts/common/sys/scsi/impl/
H A Dtransport.h667 #define INST_MINOR_SHIFT 6 macro
668 #define TRAN_MINOR_MASK ((1 << INST_MINOR_SHIFT) - 1)
674 #define INST2DEVCTL(x) (((x) << INST_MINOR_SHIFT) | DEVCTL_MINOR)
675 #define INST2SCSI(x) (((x) << INST_MINOR_SHIFT) | SCSI_MINOR)
676 #define MINOR2INST(x) ((x) >> INST_MINOR_SHIFT)
/titanic_50/usr/src/uts/common/io/cpqary3/
H A Dcpqary3.c69 #define CPQARY3_INST2x(_i, _x) (((_i) << INST_MINOR_SHIFT) | (_x))
/titanic_50/usr/src/uts/common/io/mega_sas/
H A Dmegaraid_sas.h63 #define INST2LSIRDCTL(x) ((x) << INST_MINOR_SHIFT)
/titanic_50/usr/src/uts/common/io/mr_sas/
H A Dmr_sas.h78 #define INST2LSIRDCTL(x) ((x) << INST_MINOR_SHIFT)
/titanic_50/usr/src/uts/common/io/aac/
H A Daac.c68 #define INST2AAC(x) (((x) << INST_MINOR_SHIFT) | AAC_MINOR)
/titanic_50/usr/src/uts/common/io/sata/impl/
H A Dsata.c908 ASSERT(ddi_get_instance(dip) <= (L_MAXMIN >> INST_MINOR_SHIFT)); in sata_hba_attach()