powerpc/pseries: Fix brace placement in numa.c
authorJesse Larrew <jlarrew@linux.vnet.ibm.com>
Thu, 20 Jan 2011 19:01:13 +0000 (19:01 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Mon, 7 Feb 2011 01:58:23 +0000 (12:58 +1100)
Fix brace placement in VPHN code.

Signed-off-by: Jesse Larrew <jlarrew@linux.vnet.ibm.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/powerpc/mm/numa.c

index 4d7f9e78023c7279166a5ca789ebcf49f1a87f0d..6c0cd06d0d596b6007a43620ae875fba4c7dae72 100644 (file)
@@ -1310,9 +1310,8 @@ static void setup_cpu_associativity_change_counters(void)
                u8 *counts = vphn_cpu_change_counts[cpu];
                volatile u8 *hypervisor_counts = lppaca[cpu].vphn_assoc_counts;
 
-               for (i = 0; i < VPHN_NR_CHANGE_CTRS; i++) {
+               for (i = 0; i < VPHN_NR_CHANGE_CTRS; i++)
                        counts[i] = hypervisor_counts[i];
-               }
        }
 }
 
@@ -1379,14 +1378,12 @@ static int vphn_unpack_associativity(const long *packed, unsigned int *unpacked)
                         */
                        unpacked[i] = *((u32*)field);
                        field += 2;
-               }
-               else if (*field & VPHN_FIELD_MSB) {
+               } else if (*field & VPHN_FIELD_MSB) {
                        /* Data is in the lower 15 bits of this field */
                        unpacked[i] = *field & VPHN_FIELD_MASK;
                        field++;
                        nr_assoc_doms++;
-               }
-               else {
+               } else {
                        /* Data is in the lower 15 bits of this field
                         * concatenated with the next 16 bit field
                         */
This page took 0.026315 seconds and 5 git commands to generate.