iwl-phy-db.h 516 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
  2. /*
  3. * Copyright (C) 2005-2014 Intel Corporation
  4. */
  5. #ifndef __IWL_PHYDB_H__
  6. #define __IWL_PHYDB_H__
  7. #include <linux/types.h>
  8. #include "iwl-op-mode.h"
  9. #include "iwl-trans.h"
  10. struct iwl_phy_db *iwl_phy_db_init(struct iwl_trans *trans);
  11. void iwl_phy_db_free(struct iwl_phy_db *phy_db);
  12. int iwl_phy_db_set_section(struct iwl_phy_db *phy_db,
  13. struct iwl_rx_packet *pkt);
  14. int iwl_send_phy_db_data(struct iwl_phy_db *phy_db);
  15. #endif /* __IWL_PHYDB_H__ */