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

/illumos-gate/usr/src/uts/common/io/1394/adapters/
H A Dhci1394_attach.c60 static void hci1394_statebit_set(uint64_t *state, uint_t statebit);
61 static boolean_t hci1394_statebit_tst(uint64_t state, uint_t statebit);
198 * last routine called in attach. The statebit for starup must
814 * Set bit "statebit" in "state"
817 hci1394_statebit_set(uint64_t *state, uint_t statebit) argument
820 ASSERT(statebit < 64);
821 *state |= (uint64_t)0x1 << statebit;
827 * Return status of bit "statebit". Is it set or not?
830 hci1394_statebit_tst(uint64_t state, uint_t statebit) argument
836 ASSERT(statebit < 6
[all...]

Completed in 77 milliseconds