]> Pileus Git - ~andy/linux/commit
cpuidle: don't call poll_idle_init() for every cpu
authorViresh Kumar <viresh.kumar@linaro.org>
Thu, 3 Oct 2013 15:56:54 +0000 (21:26 +0530)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 30 Oct 2013 00:21:23 +0000 (01:21 +0100)
commitd7c7f103262bc2248548ed0e113e916e843c4eeb
tree61857531d2d92f559c1a36a6295c7741bfad0a64
parent1f6b9f74ee3d96909e5e70d4207b4b6740d4db62
cpuidle: don't call poll_idle_init() for every cpu

poll_idle_init() just initializes drv->states[0] and so that is
required to be done only once for each driver.  Currently, it is
called from cpuidle_enable_device() which is called for every CPU
that the driver supports.  That is not required, so move it to a
better place and call it from __cpuidle_register_driver() so that
the initialization is carried out only once.

Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/cpuidle/cpuidle.c
drivers/cpuidle/driver.c