]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit - include/linux/cpuidle.h
cpuidle: simplify multiple driver support
authorDaniel Lezcano <daniel.lezcano@linaro.org>
Fri, 7 Jun 2013 21:53:09 +0000 (21:53 +0000)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 11 Jun 2013 11:42:38 +0000 (13:42 +0200)
commit82467a5a885ddd9f80309682159da8db510e7832
treed9a9e624e2fa4eca666d05182fc362eb8ce95830
parentbd2a337a25dd22bcd6b3fb1f99461f6991773e68
cpuidle: simplify multiple driver support

Commit bf4d1b5 (cpuidle: support multiple drivers) introduced support
for using multiple cpuidle drivers at the same time.  It added a
couple of new APIs to register the driver per CPU, but that led to
some unnecessary code complexity related to the kernel config options
deciding whether or not the multiple driver support is enabled.  The
code has to work as it did before when the multiple driver support is
not enabled and the multiple driver support has to be compatible with
the previously existing API.

Remove the new API, not used by any driver in the tree yet (but
needed for the HMP cpuidle drivers that will be submitted soon), and
add a new cpumask pointer to the cpuidle driver structure that will
point to the mask of CPUs handled by the given driver.  That will
allow the cpuidle_[un]register_driver() API to be used for the
multiple driver support along with the cpuidle_[un]register()
functions added recently.

[rjw: Changelog]
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/cpuidle/cpuidle.c
drivers/cpuidle/driver.c
include/linux/cpuidle.h