Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9f701789 authored by Michael Adisumarta's avatar Michael Adisumarta Committed by Gerrit - the friendly Code Review server
Browse files

msm: ipa: IPA IS_APPS_CONS MACRO changes



Add the new WAN_COAL_CONS pipe to this MACRO since it will
replace the WAN_CONS in coalescing enabled case.

Change-Id: Ic4eb44b5ef27206b6b5a7c8d777e4cc91e971c42
Signed-off-by: default avatarMichael Adisumarta <madisuma@codeaurora.org>
parent 6ab20abc
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -329,12 +329,16 @@ enum ipa_client_type {

	/* RESERVED PROD			= 86, */
	IPA_CLIENT_APPS_WAN_COAL_CONS		= 87,

	IPA_CLIENT_WIGIG_PROD			= 88,
	IPA_CLIENT_WIGIG1_CONS			= 89,

	/* RESERVERD PROD			= 90, */
	IPA_CLIENT_WIGIG2_CONS			= 91,

	/* RESERVERD PROD			= 92, */
	IPA_CLIENT_WIGIG3_CONS			= 93,

	/* RESERVERD PROD			= 94, */
	IPA_CLIENT_WIGIG4_CONS			= 95,

@@ -361,7 +365,8 @@ enum ipa_client_type {

#define IPA_CLIENT_IS_APPS_CONS(client) \
	((client) == IPA_CLIENT_APPS_LAN_CONS || \
	(client) == IPA_CLIENT_APPS_WAN_CONS)
	(client) == IPA_CLIENT_APPS_WAN_CONS || \
	(client) == IPA_CLIENT_APPS_WAN_COAL_CONS)

#define IPA_CLIENT_IS_USB_CONS(client) \
	((client) == IPA_CLIENT_USB_CONS || \