Deleted Added
full compact
if_ath_tx.c (239204) if_ath_tx.c (239205)
1/*-
2 * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 14 unchanged lines hidden (view full) ---

23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27 * THE POSSIBILITY OF SUCH DAMAGES.
28 */
29
30#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2002-2009 Sam Leffler, Errno Consulting
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 14 unchanged lines hidden (view full) ---

23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27 * THE POSSIBILITY OF SUCH DAMAGES.
28 */
29
30#include <sys/cdefs.h>
31__FBSDID("$FreeBSD: head/sys/dev/ath/if_ath_tx.c 239204 2012-08-12 00:37:29Z adrian $");
31__FBSDID("$FreeBSD: head/sys/dev/ath/if_ath_tx.c 239205 2012-08-12 00:46:15Z adrian $");
32
33/*
34 * Driver for the Atheros Wireless LAN controller.
35 *
36 * This software is derived from work of Atsushi Onoe; his contribution
37 * is greatly appreciated.
38 */
39

--- 4527 unchanged lines hidden (view full) ---

4567
4568 sc->sc_tx.xmit_setup = ath_legacy_dma_txsetup;
4569 sc->sc_tx.xmit_teardown = ath_legacy_dma_txteardown;
4570 sc->sc_tx.xmit_attach_comp_func = ath_legacy_attach_comp_func;
4571
4572 sc->sc_tx.xmit_dma_restart = ath_legacy_tx_dma_restart;
4573 sc->sc_tx.xmit_handoff = ath_legacy_xmit_handoff;
4574
32
33/*
34 * Driver for the Atheros Wireless LAN controller.
35 *
36 * This software is derived from work of Atsushi Onoe; his contribution
37 * is greatly appreciated.
38 */
39

--- 4527 unchanged lines hidden (view full) ---

4567
4568 sc->sc_tx.xmit_setup = ath_legacy_dma_txsetup;
4569 sc->sc_tx.xmit_teardown = ath_legacy_dma_txteardown;
4570 sc->sc_tx.xmit_attach_comp_func = ath_legacy_attach_comp_func;
4571
4572 sc->sc_tx.xmit_dma_restart = ath_legacy_tx_dma_restart;
4573 sc->sc_tx.xmit_handoff = ath_legacy_xmit_handoff;
4574
4575 sc->sc_tx.xmit_drainq = ath_legacy_tx_draintxq;
4576 sc->sc_tx.xmit_drain = ath_legacy_tx_drain;
4577}
4575 sc->sc_tx.xmit_drain = ath_legacy_tx_drain;
4576}