[IA64] Fix boot failure on ia64/sn2

Call check_sal_cache_flush() after platform_setup() as
check_sal_cache_flush() now relies on being able to call platform
vector code.

Problem was introduced by: 3463a93def55c309f3c0d0a8aaf216be3be42d64
"Update check_sal_cache_flush to use platform_send_ipi()"

Signed-off-by: Jes Sorensen <jes@sgi.com>
Tested-by: Alex Chiang: <achiang@hp.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>

authored by Jes Sorensen and committed by Tony Luck 2826f8c0 62786b9e

Changed files
+1 -2
arch
ia64
kernel
+1 -2
arch/ia64/kernel/setup.c
··· 578 578 cpu_init(); /* initialize the bootstrap CPU */ 579 579 mmu_context_init(); /* initialize context_id bitmap */ 580 580 581 - check_sal_cache_flush(); 582 - 583 581 #ifdef CONFIG_ACPI 584 582 acpi_boot_init(); 585 583 #endif ··· 605 607 ia64_mca_init(); 606 608 607 609 platform_setup(cmdline_p); 610 + check_sal_cache_flush(); 608 611 paging_init(); 609 612 } 610 613