123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- /*
- * Copyright (c) 2012-2014 The Linux Foundation. All rights reserved.
- *
- * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
- *
- *
- * Permission to use, copy, modify, and/or distribute this software for
- * any purpose with or without fee is hereby granted, provided that the
- * above copyright notice and this permission notice appear in all
- * copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
- * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
- * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
- * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
- * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- * PERFORMANCE OF THIS SOFTWARE.
- */
- /*
- * This file was originally distributed by Qualcomm Atheros, Inc.
- * under proprietary terms before Copyright ownership was assigned
- * to the Linux Foundation.
- */
- #ifndef _OL_TXRX__H_
- #define _OL_TXRX__H_
- #include <cdf_nbuf.h> /* cdf_nbuf_t */
- #include <ol_txrx_types.h> /* ol_txrx_vdev_t, etc. */
- #include <ol_ctrl_api.h> /* ol_pdev_handle */
- #include "cds_sched.h"
- void ol_txrx_peer_unref_delete(struct ol_txrx_peer_t *peer);
- #ifndef OL_TX_AVG_FRM_BYTES
- #define OL_TX_AVG_FRM_BYTES 1000
- #endif
- /**
- * ol_txrx_get_vdev_from_vdev_id() - get vdev from vdev_id
- * @vdev_id: vdev_id
- *
- * Return: vdev handle
- * NULL if not found.
- */
- static inline ol_txrx_vdev_handle ol_txrx_get_vdev_from_vdev_id(uint8_t vdev_id)
- {
- ol_txrx_pdev_handle pdev = cds_get_context(CDF_MODULE_ID_TXRX);
- ol_txrx_vdev_handle vdev = NULL;
- if (cdf_unlikely(!pdev)) {
- return NULL;
- }
- TAILQ_FOREACH(vdev, &pdev->vdev_list, vdev_list_elem) {
- if (vdev->vdev_id == vdev_id)
- break;
- }
- return vdev;
- }
- #endif /* _OL_TXRX__H_ */
|