diff options
author | Chaitanya Saggurthi <csaggurt@codeaurora.org> | 2017-06-19 19:52:10 +0530 |
---|---|---|
committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2017-06-20 03:29:03 -0700 |
commit | c011534385002dcdc744d491f2e87ae7141180e8 (patch) | |
tree | 77ca5570646a00a6b3614224136cc7d013414689 | |
parent | 389933760f00d07e946ac6d2b1cafec88a190558 (diff) |
radio: move radio hals to one place and follow name conventions
All vendor hals are moved to the centralized location and follow the
name conventions. The radio hal hidl definitions are updated.
Change-Id: I068c038157f7c4a043df75559423f35e653e84b6
CRs-Fixed: 2055157
-rw-r--r-- | vintf.xml | 47 |
1 files changed, 43 insertions, 4 deletions
@@ -230,9 +230,8 @@ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. </hal> <!-- RIL AUDIO HAL --> <hal format="hidl"> - <name>vendor.qti.qcril.am</name> + <name>vendor.qti.hardware.radio.am</name> <transport>hwbinder</transport> - <impl level="generic"></impl> <version>1.0</version> <interface> <name>IQcRilAudio</name> @@ -253,9 +252,8 @@ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. </hal> <!-- atfwd --> <hal format="hidl"> - <name>vendor.qti.atcmdfwd</name> + <name>vendor.qti.hardware.radio.atcmdfwd</name> <transport>hwbinder</transport> - <impl level="generic"></impl> <version>1.0</version> <interface> <name>IAtCmdFwd</name> @@ -296,4 +294,45 @@ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. <instance>imsrtpservice</instance> </interface> </hal> + <hal format="hidl"> + <name>vendor.qti.hardware.radio.qtiradio</name> + <transport>hwbinder</transport> + <impl level="generic"></impl> + <version>1.0</version> + <interface> + <name>IQtiRadio</name> + <instance>slot1</instance> + <instance>slot2</instance> + </interface> + </hal> + <hal format="hidl"> + <name>vendor.qti.hardware.radio.ims</name> + <transport>hwbinder</transport> + <version>1.0</version> + <interface> + <name>IImsRadio</name> + <instance>imsradio0</instance> + <instance>imsradio1</instance> + </interface> + </hal> + <hal format="hidl"> + <name>vendor.qti.hardware.radio.qcrilhook</name> + <transport>hwbinder</transport> + <version>1.0</version> + <interface> + <name>IQtiOemHook</name> + <instance>oemhook0</instance> + <instance>oemhook1</instance> + </interface> + </hal> + <hal format="hidl"> + <name>vendor.qti.hardware.radio.config</name> + <transport>hwbinder</transport> + <version>1.0</version> + <interface> + <name>IConfig</name> + <instance>radioconfig0</instance> + <instance>radioconfig1</instance> + </interface> + </hal> </manifest> |