Home
last modified time | relevance | path

Searched refs:fw_ops (Results 1 – 4 of 4) sorted by relevance

/src/sys/dev/aq/
H A Daq_hw.c204 if (hw->fw_ops && hw->fw_ops->get_stats) { in aq_hw_mpi_read_stats()
205 err = hw->fw_ops->get_stats(hw, &pmbox->stats); in aq_hw_mpi_read_stats()
226 if (hw->fw_ops && hw->fw_ops->set_mode) { in aq_hw_mpi_set()
227 err = hw->fw_ops->set_mode(hw, state, speed); in aq_hw_mpi_set()
253 if (hw->fw_ops && hw->fw_ops->get_mode) { in aq_hw_get_link_state()
254 err = hw->fw_ops->get_mode(hw, &mode, &speed, &fc); in aq_hw_get_link_state()
304 if (hw->fw_ops && hw->fw_ops->get_mac_addr) in aq_hw_get_mac_permanent()
305 err = hw->fw_ops->get_mac_addr(hw, mac); in aq_hw_get_mac_permanent()
382 if (hw->fw_ops && hw->fw_ops->reset) in aq_hw_reset()
383 hw->fw_ops->reset(hw); in aq_hw_reset()
H A Daq_fw.c186 hw->fw_ops = &aq_fw1x_ops; in aq_fw_ops_init()
190 hw->fw_ops = &aq_fw2x_ops; in aq_fw_ops_init()
H A Daq_main.c371 if (hw->fw_ops && hw->fw_ops->reset) in aq_if_attach_pre()
372 hw->fw_ops->reset(hw); in aq_if_attach_pre()
1105 if (hw->fw_ops && hw->fw_ops->led_control)
1106 hw->fw_ops->led_control(hw, onoff);
H A Daq_hw.h161 const struct aq_firmware_ops* fw_ops; member