]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
intel_idle: stop using driver_data for static flags
authorLen Brown <len.brown@intel.com>
Fri, 1 Feb 2013 00:55:37 +0000 (19:55 -0500)
committerLen Brown <len.brown@intel.com>
Fri, 1 Feb 2013 21:16:22 +0000 (16:16 -0500)
commitb1beab48f6148d50fee4a56d741cc3168fe1b995
tree3c6078f3bfa720a70833eb3536c19f16c9b0d8e1
parent88b62b915b0b7e25870eb0604ed9a92ba4bfc9f7
intel_idle: stop using driver_data for static flags

The commit, 4202735e8ab6ecfb0381631a0d0b58fefe0bd4e2
(cpuidle: Split cpuidle_state structure and move per-cpu statistics fields)
observed that the MWAIT flags for Cn on every processor to date were the
same, and created get_driver_data() to supply them.

Unfortunately, that assumption is false, going forward.
So here we restore the MWAIT flags to the cpuidle_state table.
However, instead restoring the old "driver_data" field,
we put the flags into the existing "flags" field,
where they probalby should have lived all along.

This patch does not change any operation.

This patch removes 1 of the 3 users of cpuidle_state_usage.driver_data.
Perhaps some day we'll get rid of the other 2.

Signed-off-by: Len Brown <len.brown@intel.com>
drivers/idle/intel_idle.c