qcacmn: Fix -Wmissing-prototypes in Host Transport layer

We want to enable the compiler's -Wmissing-prototypes switch, but
there is existing code that is generating warnings. Fix all warnings
in the Host Transport layer.

Change-Id: Ic9c7f920883f41176d89419de25b7e02df0b895e
CRs-Fixed: 1093231
这个提交包含在:
Jeff Johnson
2016-10-07 13:01:33 -07:00
提交者 qcabuildsw
父节点 6950fdbedd
当前提交 c66399a1ce
修改 2 个文件,包含 8 行新增7 行删除

查看文件

@@ -751,9 +751,9 @@ static void queue_htc_pm_packets(HTC_ENDPOINT *endpoint,
*
* Return: None
*/
void get_htc_send_packets_credit_based(HTC_TARGET *target,
HTC_ENDPOINT *pEndpoint,
HTC_PACKET_QUEUE *pQueue)
static void get_htc_send_packets_credit_based(HTC_TARGET *target,
HTC_ENDPOINT *pEndpoint,
HTC_PACKET_QUEUE *pQueue)
{
int creditsRequired;
int remainder;
@@ -888,9 +888,9 @@ void get_htc_send_packets_credit_based(HTC_TARGET *target,
}
void get_htc_send_packets(HTC_TARGET *target,
HTC_ENDPOINT *pEndpoint,
HTC_PACKET_QUEUE *pQueue, int Resources)
static void get_htc_send_packets(HTC_TARGET *target,
HTC_ENDPOINT *pEndpoint,
HTC_PACKET_QUEUE *pQueue, int Resources)
{
HTC_PACKET *pPacket;