qcacmn: Remove ipa_add/del_hdr_proc_ctx from QDF

Remove unused IPA API ipa_add_hdr_proc_ctx and ipa_del_hdr_proc_ctx
from QDF.

Change-Id: Iffe79a040ae68e817433416f9f59b23d9029fbdf
CRs-Fixed: 2242429
This commit is contained in:
Yun Park
2018-05-15 09:03:41 -07:00
committed by nshrivas
parent eb5dc5bd68
commit c8a48dbe8f
2 changed files with 0 additions and 28 deletions

View File

@@ -299,20 +299,6 @@ static inline int qdf_ipa_copy_hdr(qdf_ipa_ioc_copy_hdr_t *copy)
return __qdf_ipa_copy_hdr(copy); return __qdf_ipa_copy_hdr(copy);
} }
/*
* Header Processing Context
*/
static inline int qdf_ipa_add_hdr_proc_ctx(
qdf_ipa_ioc_add_hdr_proc_ctx_t *proc_ctxs)
{
return __qdf_ipa_add_hdr_proc_ctx(proc_ctxs);
}
static inline int qdf_ipa_del_hdr_proc_ctx(qdf_ipa_ioc_del_hdr_proc_ctx_t *hdls)
{
return __qdf_ipa_del_hdr_proc_ctx(hdls);
}
/* /*
* Messaging * Messaging
*/ */

View File

@@ -567,20 +567,6 @@ static inline int __qdf_ipa_copy_hdr(struct ipa_ioc_copy_hdr *copy)
return ipa_copy_hdr(copy); return ipa_copy_hdr(copy);
} }
/*
* Header Processing Context
*/
static inline int __qdf_ipa_add_hdr_proc_ctx(
struct ipa_ioc_add_hdr_proc_ctx *proc_ctxs)
{
return ipa_add_hdr_proc_ctx(proc_ctxs);
}
static inline int __qdf_ipa_del_hdr_proc_ctx(struct ipa_ioc_del_hdr_proc_ctx *hdls)
{
return ipa_del_hdr_proc_ctx(hdls);
}
/* /*
* Messaging * Messaging
*/ */