]> git.baikalelectronics.ru Git - kernel.git/commit
powerpc: Factoring mpic cpu id fetching into a function
authorMeador Inge <meador_inge@mentor.com>
Mon, 14 Mar 2011 10:01:07 +0000 (10:01 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Mon, 21 Mar 2011 00:01:32 +0000 (11:01 +1100)
commit98f9886aae1d8def5cca9a4042db1e70f37766b8
treeca3a72a579fbc05a24726aba89a162b990d6a235
parenta0ad7478cc4dfd6f62cbf7a0bc7eddf7c83e96e4
powerpc: Factoring mpic cpu id fetching into a function

The following code snippet:

unsigned int cpu = 0;
if (mpic->flags & MPIC_PRIMARY)
cpu = hard_smp_processor_id();

is seen in several places in the 'mpic.c' code.  This changeset factors
that pattern out into a helper function called 'mpic_processor_id'.

Signed-off-by: Meador Inge <meador_inge@mentor.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/powerpc/sysdev/mpic.c