From 6d42d0474555f62b5169f1e7e8d997a57ad79771 Mon Sep 17 00:00:00 2001 From: Daniel Bright Date: Mon, 28 Dec 2020 15:51:23 -0800 Subject: [PATCH] Partial hal support for secondary link bandwidth * Added modemReducedFeatureSet1 flag to HalDeviceCapabilities * Applied flag to secondary link bandwidth getters in carrier bandwidth Test: cts Bug: 173806995 Change-Id: Icfca599607e02a6c3e258c11dc9eb7701b7afd3f --- radio/config/1.3/types.hal | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/radio/config/1.3/types.hal b/radio/config/1.3/types.hal index bedb70922e..ba964bfda9 100644 --- a/radio/config/1.3/types.hal +++ b/radio/config/1.3/types.hal @@ -19,4 +19,10 @@ package android.hardware.radio.config@1.3; /** * Contains the device capabilities with respect to the Radio HAL. */ -struct HalDeviceCapabilities {}; +struct HalDeviceCapabilities { + /** + * True indicates that the modem is missing features within the current + * version of the Radio HAL. + */ + bool modemReducedFeatureSet1; +};