Patch to enable the Card Emulation detection mechanism

This patch permit to enable Card Emulation detection mechanism, via an EEPROM setting,
to avoid any card emulation notification when two Nexus S are in front of each other.

Change-Id: I200a2a1b3ce31863a1684cd0968cd0eec008885a
diff --git a/jni/com_android_nfc_NativeNfcManager.cpp b/jni/com_android_nfc_NativeNfcManager.cpp
index b37b8d4..fccb180 100644
--- a/jni/com_android_nfc_NativeNfcManager.cpp
+++ b/jni/com_android_nfc_NativeNfcManager.cpp
@@ -26,7 +26,7 @@
 
 #define ERROR_BUFFER_TOO_SMALL       -12
 #define ERROR_INSUFFICIENT_RESOURCES -9
-#define EEDATA_SETTINGS_NUMBER       28
+#define EEDATA_SETTINGS_NUMBER       29
 
 static phLibNfc_sConfig_t   gDrvCfg;
 void   *gHWRef;
@@ -106,6 +106,9 @@
 	// Set NFCT ATQA
 	,{0x00, 0x98, 0x7D, 0x02}
 	,{0x00, 0x98, 0x7E, 0x00}
+
+     // Enable CEA detection mechanism
+    ,{0x00, 0x9F, 0xC8, 0x01}
 };
 
 /* Internal functions declaration */