[Feature][T8TSK-251] fix not read the right positon of efuse

Only Configure:No
Affected branch:GSW3.0-No-Connman
Affected module:misc
Is it affected on both ZXIC and MTK: only MTK
Self-test: Yes
Doc Update: No

Change-Id: I9ae9b88be05125c3249583da3fe97143e7514cae
diff --git a/lib/liblynq-misc/lynq_misc.cpp b/lib/liblynq-misc/lynq_misc.cpp
index 1bada46..6e6fe8d 100755
--- a/lib/liblynq-misc/lynq_misc.cpp
+++ b/lib/liblynq-misc/lynq_misc.cpp
@@ -36,7 +36,7 @@
     }

     fclose(pfile);

 

-    // the third bit of 32bits at 0x428 (big endian?), 1 for enabled, 0 not enabled

-    *enabled_flag = (value & 0x20) == 0 ? 0 : 1;

+    // the third bit of 32bits at 0x428 (index start with 0?), 1 for enabled, 0 not enabled

+    *enabled_flag = (value & 0x8) == 0 ? 0 : 1;

     return 0;

 }