Remove XXX_FROZEN state from driver/base/topology. Signed-off-by: Chen, Gong <gong.c...@linux.intel.com> --- drivers/base/topology.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/drivers/base/topology.c b/drivers/base/topology.c index be7c1fb..369e437 100644 --- a/drivers/base/topology.c +++ b/drivers/base/topology.c @@ -141,15 +141,12 @@ static int topology_cpu_callback(struct notifier_block *nfb, unsigned int cpu = (unsigned long)hcpu; int rc = 0; - switch (action) { + switch (action & ~CPU_TASKS_FROZEN) { case CPU_UP_PREPARE: - case CPU_UP_PREPARE_FROZEN: rc = topology_add_dev(cpu); break; case CPU_UP_CANCELED: - case CPU_UP_CANCELED_FROZEN: case CPU_DEAD: - case CPU_DEAD_FROZEN: topology_remove_dev(cpu); break; } -- 2.0.0.rc2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/