fix build failure with lockstat.
This commit is contained in:
parent
d868888350
commit
5fc144642a
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: e500_timer.c,v 1.5 2014/07/29 23:35:00 joerg Exp $ */
|
/* $NetBSD: e500_timer.c,v 1.6 2015/01/21 06:11:39 nonaka Exp $ */
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 2010, 2011 The NetBSD Foundation, Inc.
|
* Copyright (c) 2010, 2011 The NetBSD Foundation, Inc.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
@ -35,7 +35,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: e500_timer.c,v 1.5 2014/07/29 23:35:00 joerg Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: e500_timer.c,v 1.6 2015/01/21 06:11:39 nonaka Exp $");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/kernel.h>
|
#include <sys/kernel.h>
|
||||||
@ -53,6 +53,7 @@ __KERNEL_RCSID(0, "$NetBSD: e500_timer.c,v 1.5 2014/07/29 23:35:00 joerg Exp $")
|
|||||||
#include <powerpc/booke/e500var.h>
|
#include <powerpc/booke/e500var.h>
|
||||||
#include <powerpc/booke/openpicreg.h>
|
#include <powerpc/booke/openpicreg.h>
|
||||||
|
|
||||||
|
uint32_t ticks_per_sec;
|
||||||
static u_long ns_per_tick;
|
static u_long ns_per_tick;
|
||||||
|
|
||||||
static void init_ppcbooke_tc(void);
|
static void init_ppcbooke_tc(void);
|
||||||
@ -173,6 +174,7 @@ calc_delayconst(void)
|
|||||||
struct cpu_info * const ci = curcpu();
|
struct cpu_info * const ci = curcpu();
|
||||||
|
|
||||||
ci->ci_data.cpu_cc_freq = board_info_get_number("timebase-frequency");
|
ci->ci_data.cpu_cc_freq = board_info_get_number("timebase-frequency");
|
||||||
|
ticks_per_sec = (uint32_t)ci->ci_data.cpu_cc_freq;
|
||||||
ns_per_tick = 1000000000 / (u_int)ci->ci_data.cpu_cc_freq;
|
ns_per_tick = 1000000000 / (u_int)ci->ci_data.cpu_cc_freq;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user