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
@@ -319,7 +319,7 @@ static inline int net_pollsetup(FAR struct socket *psock,
return OK;
errout_with_lock:
kfree(info);
kmm_free(info);
net_unlock(flags);
return ret;
}
@@ -374,7 +374,7 @@ static inline int net_pollteardown(FAR struct socket *psock,
/* Then free the poll info container */
kfree(info);
kmm_free(info);
}
return OK;