]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
mm-speedup-in-__early_pfn_to_nid-fix
authorAndrew Morton <akpm@linux-foundation.org>
Tue, 26 Mar 2013 23:24:45 +0000 (10:24 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Tue, 2 Apr 2013 07:29:12 +0000 (18:29 +1100)
add missing semicolon, per Tony

Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: "Luck, Tony" <tony.luck@intel.com>
Cc: David Rientjes <rientjes@google.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: KOSAKI Motohiro <kosaki.motohiro@gmail.com>
Cc: Lin Feng <linfeng@cn.fujitsu.com>
Cc: Russ Anderson <rja@sgi.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Yinghai Lu <yinghai@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
arch/ia64/mm/numa.c

index 39fa996ca5a494cf1a8711521475f9c22f5fc017..4248492b9321b2eb5f7c3079d532982011a907ef 100644 (file)
@@ -78,7 +78,7 @@ int __meminit __early_pfn_to_nid(unsigned long pfn)
                if (section >= ssec && section < esec) {
                        last_ssec = ssec;
                        last_esec = esec;
-                       last_nid = node_memblk[i].nid
+                       last_nid = node_memblk[i].nid;
                        return node_memblk[i].nid;
                }
        }