commit | 06976eb84328940d269545dee2fc20b825fedbe2 | [log] [tgz] |
---|---|---|
author | Jean-Jacques Hiblot <jjhiblot@ti.com> | Thu Nov 30 17:43:59 2017 +0100 |
committer | Jaehoon Chung <jh80.chung@samsung.com> | Fri Jan 12 18:11:04 2018 +0900 |
tree | 721cb7df55aeace420fe9753d622973ec1a38588 | |
parent | 7ab1b62267a721674fdb5a6674d53e224da13830 [diff] |
mmc: don't use malloc_cache_aligned() Not using this function reduces the size of the binary. It's replaces by a standard malloc() and the alignment requirement is handled by an intermediate buffer on the stack. Also make sure that the allocated buffer is freed in case of error. Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com>