watchdog: mpcore_wdt: Use devm routines
authorViresh Kumar <viresh.kumar@st.com>
Mon, 12 Mar 2012 04:21:59 +0000 (09:51 +0530)
committerWim Van Sebroeck <wim@iguana.be>
Tue, 27 Mar 2012 18:14:15 +0000 (20:14 +0200)
commit75f5a536c0b605b9b8406325f51f62f67141973e
tree657168af4ffe1dbe0aee01903e8e2079567cc4e7
parentaa065770f55f44ed24f0a9b76ec6e2135264d43b
watchdog: mpcore_wdt: Use devm routines

mpcore_wdt driver currently uses normal kzalloc, request_irq, ioremap, etc
routines. This patch replaces these routines with devm_kzalloc and
devm_request_mem_region etc, so that we don't need to handle freeing of
resources for error cases and module removal routine.

Also, request_irq is moved before registering misc device, so that we are ready
for irq as soon as device is registered.

Signed-off-by: Viresh Kumar <viresh.kumar@st.com>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
drivers/watchdog/mpcore_wdt.c