Rename kfree to kmm_free for consistency with other naming conventions

This commit is contained in:
Gregory Nutt
2014-08-31 17:04:02 -06:00
parent 204e5b1162
commit 54fa3b0b59
137 changed files with 646 additions and 641 deletions
+2 -2
View File
@@ -3190,7 +3190,7 @@ static void mmcsd_hwuninitialize(FAR struct mmcsd_state_s *priv)
{
mmcsd_removed(priv);
SDIO_RESET(priv->dev);
kfree(priv);
kmm_free(priv);
}
}
@@ -3311,7 +3311,7 @@ errout_with_hwinit:
return ret;
errout_with_alloc:
kfree(priv);
kmm_free(priv);
return ret;
}