summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xnci/jni/NativeNfcManager.cpp3
-rwxr-xr-xsrc/com/android/nfc/NfcService.java6
2 files changed, 3 insertions, 6 deletions
diff --git a/nci/jni/NativeNfcManager.cpp b/nci/jni/NativeNfcManager.cpp
index 81bb6b2..814f49b 100755
--- a/nci/jni/NativeNfcManager.cpp
+++ b/nci/jni/NativeNfcManager.cpp
@@ -1385,7 +1385,8 @@ static jboolean nfcManager_doActivateLlcp(JNIEnv *e, jobject o)
*******************************************************************************/
static void nfcManager_doAbort(JNIEnv *e, jobject o)
{
- ALOGD("%s", __FUNCTION__);
+ ALOGE("%s: abort()", __FUNCTION__);
+ abort();
}
diff --git a/src/com/android/nfc/NfcService.java b/src/com/android/nfc/NfcService.java
index 0514160..c7b0bba 100755
--- a/src/com/android/nfc/NfcService.java
+++ b/src/com/android/nfc/NfcService.java
@@ -1883,11 +1883,7 @@ public class NfcService implements DeviceHostListener {
}
mScreenState = params[0].intValue();
- // HACK: We've seen applying the routing configuration
- // getting stuck. The operation should normally easily
- // complete within a minute, so don't hold the wakelock
- // any longer than that.
- mRoutingWakeLock.acquire(60000);
+ mRoutingWakeLock.acquire();
try {
applyRouting(false);
} finally {