universal7885: interfaces: radio: Replace to stub implementation

This commit is contained in:
roynatech2544 2022-12-03 18:36:46 +09:00
commit 21cd0f77f7
13 changed files with 10 additions and 424 deletions

View file

@ -7,12 +7,14 @@ 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,9 +1,5 @@
package vendor.samsung.hardware.radio@2.1;
import vendor.samsung.hardware.radio@2.0::ISehRadio;
import android.hardware.radio@1.4::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);
};
interface ISehRadio extends IRadio {};

View file

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

View file

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

View file

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