qcacmn: Fix wifi load issue on CYP

wifi load failed due to unknown symbol in qca_ol
Add export symbol inside compile time macro

Change-Id: If1bb24084a6f95678b51bb85aaa0b8a87df3d50b
CRs-Fixed: 2621904
此提交包含在:
aloksing
2020-02-14 19:03:29 +05:30
提交者 nshrivas
父節點 b4c0f1fe75
當前提交 f89f2b3e50

查看文件

@@ -198,6 +198,8 @@ hal_rx_flow_setup_fse(struct hal_rx_fst *fst, uint32_t table_offset,
return fse; return fse;
} }
qdf_export_symbol(hal_rx_flow_setup_fse);
#elif defined(WLAN_SUPPORT_RX_FISA) #elif defined(WLAN_SUPPORT_RX_FISA)
/** /**
* hal_rx_flow_setup_fse() - Setup a flow search entry in HW FST * hal_rx_flow_setup_fse() - Setup a flow search entry in HW FST
@@ -310,8 +312,9 @@ hal_rx_flow_setup_fse(struct hal_rx_fst *fst, uint32_t table_offset,
return fse; return fse;
} }
#endif /* WLAN_SUPPORT_RX_FISA */
qdf_export_symbol(hal_rx_flow_setup_fse); qdf_export_symbol(hal_rx_flow_setup_fse);
#endif /* WLAN_SUPPORT_RX_FISA */
/** /**
* hal_rx_flow_delete_entry() - Delete a flow from the Rx Flow Search Table * hal_rx_flow_delete_entry() - Delete a flow from the Rx Flow Search Table