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

Commit 9a061b2f authored by Manohar Vavilapalli's avatar Manohar Vavilapalli
Browse files

soc: qcom: Fix the size of 'VMID_LAST'



Fixes the size of VMID_LAST to avoid the index
out of bound error.

Change-Id: Iacf449b131f8003ac8252cfe81c9bcb98d9280c0
Signed-off-by: default avatarManohar Vavilapalli <mvavilap@codeaurora.org>
parent 2f49ba7e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
/*
 * Copyright (c) 2015-2019, The Linux Foundation. All rights reserved.
 * Copyright (c) 2015-2020, 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
@@ -44,7 +44,7 @@ enum vmid {
	VMID_CP_CDSP = 0x2A,
	VMID_CP_DSP_EXT = 0x2E,
	VMID_NAV = 0x2B,
	VMID_LAST,
	VMID_LAST = 0x2F,
	VMID_INVAL = -1
};