Skip to content

Commit

Permalink
ipa_v2: rmnet_ipa: align ipa-loaduC with IPA3
Browse files Browse the repository at this point in the history
The property was updated in dts for all devices but IPA2 was still waiting for old one

Signed-off-by: Alin Jerpelea <[email protected]>
  • Loading branch information
jerpelea committed Feb 17, 2020
1 parent 64e260a commit aba0ffb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/platform/msm/ipa/ipa_v2/rmnet_ipa.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ enum wwan_device_status {

struct ipa_rmnet_plat_drv_res {
bool ipa_rmnet_ssr;
bool ipa_loaduC;
bool is_platform_type_msm;
bool ipa_advertise_sg_support;
bool ipa_napi_enable;
u32 wan_rx_desc_size;
Expand Down Expand Up @@ -1982,11 +1982,11 @@ static int get_ipa_rmnet_dts_configuration(struct platform_device *pdev,
"qcom,rmnet-ipa-ssr");
pr_info("IPA SSR support = %s\n",
ipa_rmnet_drv_res->ipa_rmnet_ssr ? "True" : "False");
ipa_rmnet_drv_res->ipa_loaduC =
ipa_rmnet_drv_res->is_platform_type_msm =
of_property_read_bool(pdev->dev.of_node,
"qcom,ipa-loaduC");
pr_info("IPA ipa-loaduC = %s\n",
ipa_rmnet_drv_res->ipa_loaduC ? "True" : "False");
"qcom,ipa-platform-type-msm");
pr_info("IPA is_platform_type_msm = %s\n",
ipa_rmnet_drv_res->is_platform_type_msm ? "True" : "False");

ipa_rmnet_drv_res->ipa_advertise_sg_support =
of_property_read_bool(pdev->dev.of_node,
Expand Down

0 comments on commit aba0ffb

Please sign in to comment.