make this compile again; macallan, please commit the right fix!
This commit is contained in:
parent
2432e2b578
commit
f215d8eb4d
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: pwmclock.c,v 1.8 2013/04/16 09:04:24 macallan Exp $ */
|
/* $NetBSD: pwmclock.c,v 1.9 2013/05/13 16:01:31 christos Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2011 Michael Lorenz
|
* Copyright (c) 2011 Michael Lorenz
|
||||||
@ -26,7 +26,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: pwmclock.c,v 1.8 2013/04/16 09:04:24 macallan Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: pwmclock.c,v 1.9 2013/05/13 16:01:31 christos Exp $");
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/systm.h>
|
#include <sys/systm.h>
|
||||||
@ -77,7 +77,6 @@ static u_int get_pwmclock_timecount(struct timecounter *);
|
|||||||
|
|
||||||
struct pwmclock_softc *pwmclock;
|
struct pwmclock_softc *pwmclock;
|
||||||
extern void (*initclocks_ptr)(void);
|
extern void (*initclocks_ptr)(void);
|
||||||
extern struct clockframe cf;
|
|
||||||
|
|
||||||
/* 0, 1/4, 3/8, 1/2, 5/8, 3/4, 7/8, 1 */
|
/* 0, 1/4, 3/8, 1/2, 5/8, 3/4, 7/8, 1 */
|
||||||
static int scale_m[] = {1, 1, 3, 1, 5, 3, 7, 1};
|
static int scale_m[] = {1, 1, 3, 1, 5, 3, 7, 1};
|
||||||
@ -306,7 +305,14 @@ pwmclock_intr(void *cookie)
|
|||||||
if (sc->sc_step_wanted != sc->sc_step) {
|
if (sc->sc_step_wanted != sc->sc_step) {
|
||||||
sc->sc_step = sc->sc_step_wanted;
|
sc->sc_step = sc->sc_step_wanted;
|
||||||
}
|
}
|
||||||
|
#ifdef notyet
|
||||||
|
struct clockframe cf;
|
||||||
|
|
||||||
|
cf.pc = pc;
|
||||||
|
cf.sr = status;
|
||||||
|
cf.intr = (curcpu()->ci_idepth > 1);
|
||||||
hardclock(&cf);
|
hardclock(&cf);
|
||||||
|
#endif
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user