qcacmn: Implement hif_dummy_map_ce_to_irq

Implement hif_dummy_map_ce_to_irq to prevent runtime errors on new
platforms that do not use hif_map_ce_to_irq.

Change-Id: I9e3da22e237c351ecc9919e69d8d68a656ef7cc9
CRs-Fixed: 2028145
这个提交包含在:
Dustin Brown
2017-04-03 10:20:49 -07:00
提交者 Sandeep Puligilla
父节点 2e59ee0145
当前提交 07d24be439
修改 3 个文件,包含 13 行新增2 行删除

查看文件

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2016 The Linux Foundation. All rights reserved.
* Copyright (c) 2016-2017 The Linux Foundation. All rights reserved.
*
* Previously licensed under the ISC license by Qualcomm Atheros, Inc.
*
@@ -355,3 +355,12 @@ int hif_dummy_bus_reset_resume(struct hif_softc *hif_ctx)
{
return 0;
}
int hif_dummy_map_ce_to_irq(struct hif_softc *scn, int ce_id)
{
HIF_ERROR("%s: hif_map_ce_to_irq is not implemented on this platform",
__func__);
QDF_BUG(0);
return -(1);
}