Lines Matching +full:low +full:- +full:pass
1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
103 * Byte 1: 0x43 -> Ascii code 'C'
104 * Byte 2: 0x41 -> Ascii code 'A'
105 * Byte 3: 0x4d -> Ascii code 'M'
107 * Byte 5: Low byte of received packet's status
109 * Byte 7: Low byte of packet size
125 /* Pass all Frames */
128 /* Pass Control Frames */
131 /* Pass Frames with CRC Error */
134 /* Pass Frames with Length Error */
137 /* Pass Frames length out of range */
238 #define EMAC_LOCK(cs) mtx_lock(&(sc)->emac_mtx)
239 #define EMAC_UNLOCK(cs) mtx_unlock(&(sc)->emac_mtx)
240 #define EMAC_ASSERT_LOCKED(sc) mtx_assert(&(sc)->emac_mtx, MA_OWNED);