Unbreak 64-bit Book-E builds post r329712

can_wakeup is defined only in AIM's locore64.S, so conditionalize use of it
on AIM in addition to powerpc64.
This commit is contained in:
Justin Hibbits 2018-02-24 18:12:38 +00:00
parent 635d2bed1d
commit 7eb6081727
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=329918

View File

@ -89,7 +89,7 @@ int powerpc_pow_enabled;
void (*cpu_idle_hook)(sbintime_t) = NULL;
static void cpu_idle_60x(sbintime_t);
static void cpu_idle_booke(sbintime_t);
#ifdef __powerpc64__
#if defined(__powerpc64__) && defined(AIM)
static void cpu_idle_powerx(sbintime_t);
#endif
@ -620,7 +620,7 @@ static void
cpu_powerx_setup(int cpuid, uint16_t vers)
{
#ifdef __powerpc64__
#if defined(__powerpc64__) && defined(AIM)
if ((mfmsr() & PSL_HV) == 0)
return;
@ -745,7 +745,7 @@ cpu_idle_booke(sbintime_t sbt)
#endif
}
#ifdef __powerpc64__
#if defined(__powerpc64__) && defined(AIM)
static void
cpu_idle_powerx(sbintime_t sbt)
{