rtc: rtc-sh - fix a memory leak
authorAxel Lin <axel.lin@gmail.com>
Mon, 8 Nov 2010 05:35:10 +0000 (13:35 +0800)
committerPaul Mundt <lethal@linux-sh.org>
Mon, 8 Nov 2010 06:08:42 +0000 (15:08 +0900)
commit899be96db75451ba98cb217109ef4cf2ee6de927
treeb84ded26b414c160a6a430f55b38f4cc9c28dfa7
parent151f52f09c5728ecfdd0c289da1a4b30bb416f2c
rtc: rtc-sh - fix a memory leak

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.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
drivers/rtc/rtc-sh.c