Deleted Added
full compact
clock.c (202387) clock.c (202534)
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz and Don Ahn.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 19 unchanged lines hidden (view full) ---

28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * from: @(#)clock.c 7.2 (Berkeley) 5/12/91
33 */
34
35#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz and Don Ahn.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 19 unchanged lines hidden (view full) ---

28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * from: @(#)clock.c 7.2 (Berkeley) 5/12/91
33 */
34
35#include <sys/cdefs.h>
36__FBSDID("$FreeBSD: head/sys/i386/isa/clock.c 202387 2010-01-15 16:04:30Z attilio $");
36__FBSDID("$FreeBSD: head/sys/i386/isa/clock.c 202534 2010-01-17 23:23:35Z attilio $");
37
38/*
39 * Routines to handle clock hardware.
40 */
41
42#include "opt_apic.h"
43#include "opt_clock.h"
44#include "opt_kdtrace.h"

--- 15 unchanged lines hidden (view full) ---

60#include <sys/smp.h>
61#include <sys/sysctl.h>
62
63#include <machine/clock.h>
64#include <machine/cpu.h>
65#include <machine/frame.h>
66#include <machine/intr_machdep.h>
67#include <machine/md_var.h>
37
38/*
39 * Routines to handle clock hardware.
40 */
41
42#include "opt_apic.h"
43#include "opt_clock.h"
44#include "opt_kdtrace.h"

--- 15 unchanged lines hidden (view full) ---

60#include <sys/smp.h>
61#include <sys/sysctl.h>
62
63#include <machine/clock.h>
64#include <machine/cpu.h>
65#include <machine/frame.h>
66#include <machine/intr_machdep.h>
67#include <machine/md_var.h>
68#ifdef DEV_APIC
69#include <machine/apicvar.h>
68#include <machine/apicvar.h>
70#endif
71#include <machine/ppireg.h>
72#include <machine/timerreg.h>
73#include <machine/smp.h>
74
75#include <isa/rtc.h>
76#ifdef DEV_ISA
77#include <isa/isareg.h>
78#include <isa/isavar.h>

--- 627 unchanged lines hidden ---
69#include <machine/ppireg.h>
70#include <machine/timerreg.h>
71#include <machine/smp.h>
72
73#include <isa/rtc.h>
74#ifdef DEV_ISA
75#include <isa/isareg.h>
76#include <isa/isavar.h>

--- 627 unchanged lines hidden ---