mfd: Move twl-core device_init_wakeup to after platform_device_add
authorNeilBrown <neilb@suse.de>
Fri, 6 Jul 2012 22:51:03 +0000 (08:51 +1000)
committerSamuel Ortiz <sameo@linux.intel.com>
Mon, 9 Jul 2012 13:13:41 +0000 (15:13 +0200)
commit17ffba6ad235cf9c21937ee1343df0d0fb2371fa
tree30cbac06fa6a4bc7a7b3b3e9f44e8e5063eb4e5a
parent5500e3964b8c154dc5af51ebcd7cd4df5d4abfee
mfd: Move twl-core device_init_wakeup to after platform_device_add

device_init_wakeup uses the dev_name() of the device to set the
name of the wakeup_source which appears in
/sys/kernel/debug/wakeup_sources.

For a platform device, that name is not set until platform_device_add
calls dev_set_name.

So the call to device_init_wakeup() must be after the call to
platform_device_add().
Making this change causes correct names to appear in the
wakeup_sources file.

Signed-off-by: NeilBrown <neilb@suse.de>
Acked-by: Rafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
drivers/mfd/twl-core.c