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
+1 -1
View File
@@ -154,6 +154,6 @@ int bchlib_setup(const char *blkdev, bool readonly, FAR void **handle)
return OK;
errout_with_bch:
kfree(bch);
kmm_free(bch);
return ret;
}
+2 -2
View File
@@ -103,11 +103,11 @@ int bchlib_teardown(FAR void *handle)
if (bch->buffer)
{
kfree(bch->buffer);
kmm_free(bch->buffer);
}
sem_destroy(&bch->sem);
kfree(bch);
kmm_free(bch);
return OK;
}