From 0f1b257f96e7cd3f945a1ce016c1a973bd04c8a6 Mon Sep 17 00:00:00 2001 From: Shawn Willden Date: Tue, 30 May 2023 14:52:53 -0600 Subject: [PATCH] Extend QC SPU waiver to VSR-S devices. Bug: 281452355 Test: VtsAidlKeyMintTargetTest Change-Id: I9fc1d1f9a3b5b29cfee3ad325bc1c4ef72c44c13 --- security/keymint/aidl/vts/functional/KeyMintAidlTestBase.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/security/keymint/aidl/vts/functional/KeyMintAidlTestBase.cpp b/security/keymint/aidl/vts/functional/KeyMintAidlTestBase.cpp index e51bb6e447..b55e609319 100644 --- a/security/keymint/aidl/vts/functional/KeyMintAidlTestBase.cpp +++ b/security/keymint/aidl/vts/functional/KeyMintAidlTestBase.cpp @@ -1606,7 +1606,8 @@ bool KeyMintAidlTestBase::is_chipset_allowed_km4_strongbox(void) const { auto res = property_get("ro.vendor.qti.soc_model", buffer.data(), nullptr); if (res <= 0) return false; - const string allowed_soc_models[] = {"SM8450", "SM8475", "SM8550", "SXR2230P"}; + const string allowed_soc_models[] = {"SM8450", "SM8475", "SM8550", "SXR2230P", + "SM4450", "SM7450", "SM6450"}; for (const string model : allowed_soc_models) { if (model.compare(buffer.data()) == 0) {