mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Revision:
172:7d866c31b3c5
Parent:
149:156823d33999
--- a/targets/TARGET_NUVOTON/nu_modutil.c	Wed Aug 16 18:27:13 2017 +0100
+++ b/targets/TARGET_NUVOTON/nu_modutil.c	Thu Aug 31 17:27:04 2017 +0100
@@ -23,7 +23,7 @@
     MBED_ASSERT(modprop_tab != NULL);
     const struct nu_modinit_s *modprop_ind = modprop_tab;
     while (modprop_ind->modname != NC) {
-        if (modname == modprop_ind->modname) {
+        if ((int) modname == modprop_ind->modname) {
             return modprop_ind;
         }
         else {