Revert "universal7885: interfaces: radio: Replace to stub implementation"

This reverts commit 21cd0f77f7.
This commit is contained in:
roynatech2544 2023-10-10 18:54:39 +09:00
commit 9ce56c4cc8
No known key found for this signature in database
GPG key ID: 389DAC92CAECBBCC
13 changed files with 424 additions and 10 deletions

View file

@ -7,14 +7,12 @@ hidl_interface {
"ISehRadio.hal",
"ISehRadioIndication.hal",
"ISehRadioResponse.hal",
"types.hal"
],
interfaces: [
"android.hardware.radio@1.0",
"android.hardware.radio@1.1",
"android.hardware.radio@1.2",
"android.hardware.radio@1.3",
"android.hardware.radio@1.4",
"android.hidl.base@1.0",
"vendor.samsung.hardware.radio@2.0",
],
gen_java: true,
}

View file

@ -1,5 +1,9 @@
package vendor.samsung.hardware.radio@2.1;
import android.hardware.radio@1.4::IRadio;
import vendor.samsung.hardware.radio@2.0::ISehRadio;
interface ISehRadio extends IRadio {};
interface ISehRadio extends @2.0::ISehRadio {
oneway setNrMode(int32_t serial, int32_t mode);
oneway getNrMode(int32_t serial);
oneway getNrIconType(int32_t serial);
};

View file

@ -1,5 +1,5 @@
package vendor.samsung.hardware.radio@2.1;
import android.hardware.radio@1.4::IRadioIndication;
import @2.0::ISehRadioIndication;
interface ISehRadioIndication extends IRadioIndication {};
interface ISehRadioIndication extends @2.0::ISehRadioIndication {};

View file

@ -1,5 +1,5 @@
package vendor.samsung.hardware.radio@2.1;
import android.hardware.radio@1.4::IRadioResponse;
import @2.0::ISehRadioResponse;
interface ISehRadioResponse extends IRadioResponse {};
interface ISehRadioResponse extends @2.0::ISehRadioResponse {};

View file

@ -0,0 +1,9 @@
package vendor.samsung.hardware.radio@2.1;
import @2.0::SehCardStatus;
struct SehCardStatus {
@2.0::SehCardStatus base;
string eid;
};