Parcourir la source

msm: ipa: fix usage of ipa driver API

Call internal IPA API instead of external API that are
stubbed as not used externally.

Change-Id: I9ad9c8c3dc5139ca3236371aeb59fb6712cb2dee
Signed-off-by: Amir Levy <[email protected]>
Amir Levy il y a 4 ans
Parent
commit
64ea36b4fc
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      drivers/platform/msm/ipa/ipa_clients/ipa_eth.c

+ 2 - 2
drivers/platform/msm/ipa/ipa_clients/ipa_eth.c

@@ -907,13 +907,13 @@ static int ipa_eth_client_unreg_intf_internal(struct ipa_eth_intf_info *intf)
 			IPA_ETH_DBG("IPv4 hdr hdl: %d IPv6 hdr hdl: %d\n",
 				hdr->hdl[0].hdl, hdr->hdl[1].hdl);
 
-			if (ipa_del_hdr(hdr)) {
+			if (ipa3_del_hdr(hdr)) {
 				IPA_ETH_ERR("fail to delete partial header\n");
 				ret = -EFAULT;
 				goto fail;
 			}
 
-			if (ipa_deregister_intf(entry->netdev_name)) {
+			if (ipa3_deregister_intf(entry->netdev_name)) {
 				IPA_ETH_ERR("fail to del interface props\n");
 				ret = -EFAULT;
 				goto fail;