Remove MMS support from MAP SDP

When we support MMS in the future. Revert this patch.
bug 10296324

Change-Id: I9d65895d6cb55b3967efcddc2c37b3f95ba3ce38
diff --git a/btif/src/btif_sock_sdp.c b/btif/src/btif_sock_sdp.c
index d8f65df..e02a609 100644
--- a/btif/src/btif_sock_sdp.c
+++ b/btif/src/btif_sock_sdp.c
@@ -225,11 +225,11 @@
     const char* service_name;          /* Description of the MAS instance */
     UINT8       supported_message_types;/* Server supported message types - SMS/MMS/EMAIL */
 } tBTA_MAPS_CFG;
-const tBTA_MAPS_CFG bta_maps_cfg_sms_mms =
+const tBTA_MAPS_CFG bta_maps_cfg_sms =
 {
     0,                  /* Mas id 0 is for SMS/MMS */
-    "MAP SMS/MMS",
-    BTA_MAP_MSG_TYPE_SMS_GSM | BTA_MAP_MSG_TYPE_SMS_CDMA | BTA_MAP_MSG_TYPE_MMS
+    "MAP SMS",
+    BTA_MAP_MSG_TYPE_SMS_GSM | BTA_MAP_MSG_TYPE_SMS_CDMA
 };
 const tBTA_MAPS_CFG bta_maps_cfg_email =
 {
@@ -246,7 +246,7 @@
     BOOLEAN             status = FALSE;
     UINT32              sdp_handle = 0;
     // TODO: To add support for EMAIL set below depending on the scn to either SMS or Email
-    const tBTA_MAPS_CFG *p_bta_maps_cfg = &bta_maps_cfg_sms_mms;
+    const tBTA_MAPS_CFG *p_bta_maps_cfg = &bta_maps_cfg_sms;
 
     APPL_TRACE_DEBUG2("add_maps_sdd:scn %d, service name %s", scn, p_service_name);