Fix build breakage. Apparently all ARM configs build kern_et.c, but only a

few of them also build kern_clocksource.c.  That strikes me as insane, but
maybe there's a good reason for it.  Until I figure that out, un-break
the build by not referencing functions in kern_clocksource if NO_EVENTTIMERS
is defined.
This commit is contained in:
Ian Lepore 2014-04-02 17:34:17 +00:00
parent 55af5cf123
commit 9e24f23880
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=264048

View File

@ -34,6 +34,8 @@ __FBSDID("$FreeBSD$");
#include <sys/queue.h>
#include <sys/timeet.h>
#include "opt_timer.h"
SLIST_HEAD(et_eventtimers_list, eventtimer);
static struct et_eventtimers_list eventtimers = SLIST_HEAD_INITIALIZER(et_eventtimers);
@ -121,7 +123,9 @@ void
et_change_frequency(struct eventtimer *et, uint64_t newfreq)
{
#ifndef NO_EVENTTIMERS
cpu_et_frequency(et, newfreq);
#endif
}
/*