12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
-
- static inline void
- cdp_display_stats(ol_txrx_soc_handle soc, uint16_t bitmap)
- {
- if (soc->ops->mob_stats_ops->display_stats)
- return soc->ops->mob_stats_ops->display_stats(bitmap);
- return;
- }
- static inline void
- cdp_clear_stats(ol_txrx_soc_handle soc, uint16_t bitmap)
- {
- if (soc->ops->mob_stats_ops->clear_stats)
- return soc->ops->mob_stats_ops->clear_stats(bitmap);
- return;
- }
- static inline int
- cdp_stats(ol_txrx_soc_handle soc, uint8_t vdev_id, char *buffer,
- unsigned buf_len)
- {
- if (soc->ops->mob_stats_ops->stats)
- return soc->ops->mob_stats_ops->stats(vdev_id, buffer, buf_len);
- return 0;
- }
|