Remove the hack which prevents detecting additional CPUs.

Now that serial output is fixed, this doesn't seem to be necessary any more.

BUG=chromium-os:26458
TEST=Ran on Stumpy with serial fixed and didn't see any problems. It ran long
enough to go through all the tests 3 times. I'll leave it running and continue
to watch for errors/strange behavior.

Change-Id: Id46f48429494f99fd3e936dda5bffcaf1d14614e
Signed-off-by: Gabe Black <gabeblack@google.com>
diff --git a/smp.c b/smp.c
index 5a9b149..55c7bdb 100644
--- a/smp.c
+++ b/smp.c
@@ -476,11 +476,6 @@
 
    memset(&AP, 0, sizeof AP);
 
-   /* XXX Hack to force the number of CPUs to 1. */
-   num_cpus = 1;
-   found_cpus = 1;
-   return;
-
    /* Search for the Floating MP structure pointer */
    fp = scan_for_floating_ptr_struct(0x0, 0x400);
    if (fp == NULL) {