Home
last modified time | relevance | path

Searched refs:mly_packet (Results 1 – 2 of 2) sorted by relevance

/freebsd-9-stable/sys/dev/mly/
Dmly.c1737 if (bus_dmamem_alloc(sc->mly_packet_dmat, (void **)&sc->mly_packet, in mly_alloc_commands()
1741 if (bus_dmamap_load(sc->mly_packet_dmat, sc->mly_packetmap, sc->mly_packet, in mly_alloc_commands()
1751 mc->mc_packet = sc->mly_packet + i; in mly_alloc_commands()
1774 if (sc->mly_packet != NULL) { in mly_release_commands()
1776 bus_dmamem_free(sc->mly_packet_dmat, sc->mly_packet, sc->mly_packetmap); in mly_release_commands()
1777 sc->mly_packet = NULL; in mly_release_commands()
Dmlyvar.h209 union mly_command_packet *mly_packet; /* command packets */ member