123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
-
- static inline int cdp_get_nwifi_mode(ol_txrx_soc_handle soc,
- void *vdev)
- {
- if (soc->ops->raw_ops->txrx_get_nwifi_mode)
- return soc->ops->raw_ops->txrx_get_nwifi_mode(vdev);
- return 0;
- }
- static inline int
- cdp_rsim_tx_encap(ol_txrx_soc_handle soc,
- void *vdev, qdf_nbuf_t *pnbuf)
- {
- if (soc->ops->raw_ops->rsim_tx_encap)
- return soc->ops->raw_ops->rsim_tx_encap(vdev, pnbuf);
- return 0;
- }
|