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

Commit dea9ba2c authored by Skylar Chang's avatar Skylar Chang
Browse files

Revert "msm: ipa: change the QMI IP_TYPE_ENUM"



This reverts commit f53965f3.
This change is done to align with modem QMI IDL.

Change-Id: Ib1efaa3a4822626c2e6206cf9b245ac09b2693ea
Signed-off-by: default avatarSkylar Chang <chiaweic@codeaurora.org>
parent 028b35cc
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
/* Copyright (c) 2013-2014, The Linux Foundation. All rights reserved.
/* Copyright (c) 2013-2015, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
@@ -510,10 +510,14 @@ struct ipa_filter_rule_type_v01 {
enum ipa_ip_type_enum_v01 {
	IPA_IP_TYPE_ENUM_MIN_ENUM_VAL_V01 = -2147483647,
	/* To force a 32 bit signed enum.  Do not change or use*/
	QMI_IPA_IP_TYPE_V4_V01 = 0,
	QMI_IPA_IP_TYPE_INVALID_V01 = 0,
	/*  Invalid IP type identifier */
	QMI_IPA_IP_TYPE_V4_V01 = 1,
	/*  IP V4 type */
	QMI_IPA_IP_TYPE_V6_V01 = 1,
	QMI_IPA_IP_TYPE_V6_V01 = 2,
	/*  IP V6 type */
	QMI_IPA_IP_TYPE_V4V6_V01 = 3,
	/*  Applies to both IP types */
	IPA_IP_TYPE_ENUM_MAX_ENUM_VAL_V01 = 2147483647
	/* To force a 32 bit signed enum.  Do not change or use*/
};