mirror of
https://github.com/chararomandroid/android_device_samsung_a20
synced 2026-08-23 12:35:33 -04:00
Revert "universal7885: interfaces: radio: Replace to stub implementation"
This reverts commit 21cd0f77f7.
This commit is contained in:
parent
745ca56170
commit
9ce56c4cc8
13 changed files with 424 additions and 10 deletions
|
|
@ -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,
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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 {};
|
||||
|
|
|
|||
|
|
@ -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 {};
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
package vendor.samsung.hardware.radio@2.1;
|
||||
|
||||
import @2.0::SehCardStatus;
|
||||
|
||||
struct SehCardStatus {
|
||||
@2.0::SehCardStatus base;
|
||||
string eid;
|
||||
};
|
||||
|
||||
Loading…
Reference in a new issue