This serial of patches fixes a memory leak related to request_mem_region and release_mem_region usage. request_mem_region() will call kzalloc to allocate memory for struct resource. release_resource() unregisters the resource but does not free the allocated memory, thus use release_mem_region() instead to fix the memory leak. Axel Lin (4): [ARM] davinci_mmc: fix a memory leak [ARM] mvsdio: fix a memory leak [ARM] pxamci: fix a memory leak [ARM] mxcmmc: remove a unnecessary release_resource() call drivers/mmc/host/davinci_mmc.c | 5 +++-- drivers/mmc/host/mvsdio.c | 4 ++-- drivers/mmc/host/mxcmmc.c | 1 - drivers/mmc/host/pxamci.c | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) -- 1.7.2 -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html