Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4feb1dbf authored by Aleksander Morgado's avatar Aleksander Morgado Committed by Android (Google) Code Review
Browse files

Merge "trivial: fix various spelling and grammatical errors in AIDL definitions." into main

parents d7aa5594 7a506dfd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ enum RadioAccessFamily {
    /** @deprecated use LTE instead. */
    LTE_CA = 1 << RadioTechnology.LTE_CA,
    /**
     * 5G NR. This is only use in 5G Standalone mode.
     * 5G NR. This is only used in 5G Standalone mode.
     */
    NR = 1 << RadioTechnology.NR,
}
+6 −6
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ enum RadioError {
     */
    MODE_NOT_SUPPORTED = 13,
    /**
     * Command failed becausee recipient is not on FDN list
     * Command failed because recipient is not on FDN list
     */
    FDN_CHECK_FAILURE = 14,
    /**
@@ -133,7 +133,7 @@ enum RadioError {
     */
    LCE_NOT_SUPPORTED = 36,
    /**
     * Not sufficieent memory to process the request
     * Not sufficient memory to process the request
     */
    NO_MEMORY = 37,
    /**
@@ -218,7 +218,7 @@ enum RadioError {
     */
    ENCODING_ERR = 57,
    /**
     * SMSC addrss specified is invalid
     * SMSC address specified is invalid
     */
    INVALID_SMSC_ADDRESS = 58,
    /**
@@ -279,7 +279,7 @@ enum RadioError {
    OEM_ERROR_24 = 524,
    OEM_ERROR_25 = 525,
    /**
     * 1X voice and SMS are not allowed simulteneously.
     * 1X voice and SMS are not allowed simultaneously.
     */
    SIMULTANEOUS_SMS_AND_CALL_NOT_ALLOWED = 67,
    /**
@@ -293,8 +293,8 @@ enum RadioError {
    BLOCKED_DUE_TO_CALL = 69,
    /**
     * Returned from setRadioPowerResponse when detecting RF HW issues. Some RF Front-End (RFFE)
     * components like antenna are considered critical for modem to provide telephony service.
     * This RadioError is used when modem detect such RFFE problem.
     * components like antennas are considered critical for modem to provide telephony service.
     * This RadioError is used when modem detects such RFFE problems.
     */
    RF_HARDWARE_ISSUE = 70,
    /**
+3 −3
Original line number Diff line number Diff line
@@ -143,7 +143,7 @@ enum DataCallFailCause {
     */
    DATA_REGISTRATION_FAIL = -2,
    /**
     * Network/modem disonnect
     * Network/modem disconnect
     */
    SIGNAL_LOST = -3,
    /**
@@ -172,7 +172,7 @@ enum DataCallFailCause {
    ACTIVATION_REJECTED_BCM_VIOLATION = 0x30,
    /**
     * Network has already initiated the activation, modification, or deactivation of bearer
     * resources that was requested by the UE.
     * resources that were requested by the UE.
     */
    COLLISION_WITH_NETWORK_INITIATED_REQUEST = 0x38,
    /**
@@ -182,7 +182,7 @@ enum DataCallFailCause {
     */
    ONLY_IPV4V6_ALLOWED = 0x39,
    /**
     * Network supports non-IP PDP type only. IPv4, IPv6 and IPv4v6 is not allowed. In LTE mode of
     * Network supports non-IP PDP type only. IPv4, IPv6 and IPv4v6 are not allowed. In LTE mode of
     * operation, this is a PDN throttling cause code, meaning the UE can throttle further requests
     * to the same APN.
     */
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ parcelable DataProfileInfo {
    const int TYPE_3GPP2 = 2;

    /**
     * Innfrastructure type unknown. This is only for initializing.
     * Infrastructure type unknown. This is only for initializing.
     */
    const int INFRASTRUCTURE_UNKNOWN = 0;

+2 −2
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ import android.hardware.radio.data.SlicingConfig;
oneway interface IRadioDataResponse {
    /**
     * Acknowledge the receipt of radio request sent to the vendor. This must be sent only for
     * radio request which take long time to respond. For more details, refer
     * radio requests which take a long time to respond. For more details, refer
     * https://source.android.com/devices/tech/connect/ril.html
     *
     * @param serial Serial no. of the request whose acknowledgement is sent.
@@ -199,7 +199,7 @@ oneway interface IRadioDataResponse {
     *   RadioError:OP_NOT_ALLOWED_DURING_VOICE_CALL
     *   RadioError:INVALID_ARGUMENTS
     *   RadioError:INTERNAL_ERR
     *   RadioError:NO_RESOURCES if the vendor is unable handle due to resources are full.
     *   RadioError:NO_RESOURCES if the vendor is unable to handle due to resources being full.
     *   RadioError:SIM_ABSENT
     */
    void setupDataCallResponse(in RadioResponseInfo info, in SetupDataCallResult dcResponse);
Loading