qcacmn: Add USB bus support (HIF Dispatcher)

Add module specific changes for USB bus support.

Change-Id: If1f7d16a733d5d98cba982e3a5e7936356c57d8a
CRs-Fixed: 1023663
这个提交包含在:
Mohit Khanna
2016-05-11 11:17:01 -07:00
提交者 Vishwajith Upendra
父节点 91c8529516
当前提交 1957ba9385
修改 8 个文件,包含 217 行新增2 行删除

查看文件

@@ -284,3 +284,27 @@ void hif_dummy_display_stats(struct hif_softc *hif_ctx)
*/
void hif_dummy_clear_stats(struct hif_softc *hif_ctx)
{}
/**
* hif_dummy_set_bundle_mode() - dummy call
* @hif_sc: hif context
* @enabled: flag to enable/disable bundling
* @rx_bundle_cnt: bundle count to be used for RX
*
* Return: none
*/
void hif_dummy_set_bundle_mode(struct hif_softc *hif_ctx,
bool enabled, int rx_bundle_cnt)
{
return;
}
/**
* hif_dummy_bus_reset_resume() - dummy call
* @hif_sc: hif context
*
* Return: int 0 for success, non zero for failure
*/
int hif_dummy_bus_reset_resume(struct hif_softc *hif_ctx)
{
return 0;
}