]> git.karo-electronics.de Git - karo-tx-linux.git/commit
drivers/rtc/rtc-twl.c: fix missing device_init_wakeup() when booted with device tree
authorTony Lindgren <tony@atomide.com>
Fri, 7 Jun 2013 00:07:05 +0000 (10:07 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Fri, 7 Jun 2013 05:41:46 +0000 (15:41 +1000)
commit2c5e86ab89281adba369a27bc18ca26544defafe
tree1dcd681f569f7114e8a2d9e5d5eedd70a6ab48bf
parentc4cfd8a64579398915db2f08e6b2f7826920e2d6
drivers/rtc/rtc-twl.c: fix missing device_init_wakeup() when booted with device tree

When booted in legacy mode device_init_wakeup() gets called by
drivers/mfd/twl-core.c when the children are initialized.  However, when
booted using device tree, the children are created with
of_platform_populate() instead add_children().

This means that the RTC driver will not have device_init_wakeup() set, and
we need to call it from the driver probe like RTC drivers typically do.

Without this we cannot test PM wake-up events on omaps for cases where
there may not be any physical wake-up event.

Signed-off-by: Tony Lindgren <tony@atomide.com>
Reported-by: Kevin Hilman <khilman@linaro.org>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Cc: Jingoo Han <jg1.han@samsung.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
drivers/rtc/rtc-twl.c