Эх сурвалжийг харах

Revert "dsp: voice_mhi: use modified mhi sync/put api"

This reverts commit 40c749da4c9e3fbb70c321e1acee4e7d873ae230.
This change needs a corresponding change in msm-4.19 which is
not yet ready. Revert this change for now, until the dependency
change is ready to be merged.

Change-Id: I7ac030b03c01500e6061dbc6e5b4ad13385a0109
Signed-off-by: Banajit Goswami <[email protected]>
Banajit Goswami 6 жил өмнө
parent
commit
952f3d7864
1 өөрчлөгдсөн 2 нэмэгдсэн , 3 устгасан
  1. 2 3
      dsp/voice_mhi.c

+ 2 - 3
dsp/voice_mhi.c

@@ -228,8 +228,7 @@ int voice_mhi_start(void)
 			goto done;
 		}
 		if (voice_mhi_lcl.vote_count == 0) {
-			ret = mhi_device_get_sync(voice_mhi_lcl.mhi_dev,
-					MHI_VOTE_DEVICE);
+			ret = mhi_device_get_sync(voice_mhi_lcl.mhi_dev);
 			if (ret) {
 				pr_err("%s: mhi_device_get_sync failed\n",
 					   __func__);
@@ -270,7 +269,7 @@ int voice_mhi_end(void)
 		}
 
 		if (voice_mhi_lcl.vote_count == 1)
-			mhi_device_put(voice_mhi_lcl.mhi_dev, MHI_VOTE_DEVICE);
+			mhi_device_put(voice_mhi_lcl.mhi_dev);
 		voice_mhi_lcl.vote_count--;
 	}
 	mutex_unlock(&voice_mhi_lcl.mutex);