Fix Sibyte SMP kernel breakage caused by r208249.

We need to include the header file that provides declaration of the
smp_topo_none() function.
This commit is contained in:
Neel Natu 2010-05-18 05:12:54 +00:00
parent 50e5b49dea
commit c0fd703892
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=208253

View file

@ -76,6 +76,7 @@ __FBSDID("$FreeBSD$");
#include <machine/vmparam.h>
#ifdef SMP
#include <sys/smp.h>
#include <machine/smp.h>
#endif
@ -347,6 +348,7 @@ platform_ipi_intrnum(void)
struct cpu_group *
platform_smp_topo(void)
{
return (smp_topo_none());
}