NOSP-NGEN-artf221204-Reverting-the-condition-to-chec
diff --git a/src/nfc/nfc/nfc_ncif.c b/src/nfc/nfc/nfc_ncif.c
index b26693b..782fef9 100644
--- a/src/nfc/nfc/nfc_ncif.c
+++ b/src/nfc/nfc/nfc_ncif.c
@@ -459,12 +459,8 @@
     /* try to send the first data packet in the tx queue  */
     p_data = (BT_HDR *)GKI_getfirst (&p_cb->tx_q);
 
-#if(NXP_EXTNS == TRUE)
-     /* post data fragment to NCIT task as credits are available */
-     while (p_data && (p_cb->num_buff > 0))
-#else
-     while (p_data && (p_data->len >= 0) && (p_cb->num_buff > 0))
-#endif
+    /* post data fragment to NCIT task as credits are available */
+    while (p_data && (p_data->len >= 0) && (p_cb->num_buff > 0))
     {
         if (p_data->len <= buffer_size)
         {