Deleted Added
full compact
atrtc.c (161141) atrtc.c (162954)
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/isa/atrtc.c 161141 2006-08-09 23:47:38Z imp $");
36__FBSDID("$FreeBSD: head/sys/isa/atrtc.c 162954 2006-10-02 12:59:59Z phk $");
37
38/*
39 * Routines to handle clock hardware.
40 */
41
42/*
43 * inittodr, settodr and support routines written
44 * by Christoph Robitschko <chmr@edvz.tu-graz.ac.at>

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

50#include "opt_clock.h"
51#include "opt_isa.h"
52#include "opt_mca.h"
53#include "opt_xbox.h"
54
55#include <sys/param.h>
56#include <sys/systm.h>
57#include <sys/bus.h>
37
38/*
39 * Routines to handle clock hardware.
40 */
41
42/*
43 * inittodr, settodr and support routines written
44 * by Christoph Robitschko <chmr@edvz.tu-graz.ac.at>

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

50#include "opt_clock.h"
51#include "opt_isa.h"
52#include "opt_mca.h"
53#include "opt_xbox.h"
54
55#include <sys/param.h>
56#include <sys/systm.h>
57#include <sys/bus.h>
58#include <sys/clock.h>
58#include <sys/lock.h>
59#include <sys/kdb.h>
60#include <sys/mutex.h>
61#include <sys/proc.h>
62#include <sys/time.h>
63#include <sys/timetc.h>
64#include <sys/kernel.h>
65#include <sys/limits.h>

--- 918 unchanged lines hidden ---
59#include <sys/lock.h>
60#include <sys/kdb.h>
61#include <sys/mutex.h>
62#include <sys/proc.h>
63#include <sys/time.h>
64#include <sys/timetc.h>
65#include <sys/kernel.h>
66#include <sys/limits.h>

--- 918 unchanged lines hidden ---