Deleted Added
full compact
s3c24x0_clk.c (217072) s3c24x0_clk.c (272103)
1/* $NetBSD: s3c24x0_clk.c,v 1.6 2005/12/24 20:06:52 perry Exp $ */
2
3/*
4 * Copyright (c) 2003 Genetec corporation. All rights reserved.
5 * Written by Hiroyuki Bessho for Genetec corporation.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
30 */
31
32#include <sys/cdefs.h>
1/* $NetBSD: s3c24x0_clk.c,v 1.6 2005/12/24 20:06:52 perry Exp $ */
2
3/*
4 * Copyright (c) 2003 Genetec corporation. All rights reserved.
5 * Written by Hiroyuki Bessho for Genetec corporation.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
30 */
31
32#include <sys/cdefs.h>
33__FBSDID("$FreeBSD: head/sys/arm/s3c2xx0/s3c24x0_clk.c 217072 2011-01-06 21:08:06Z jhb $");
33__FBSDID("$FreeBSD: head/sys/arm/samsung/s3c2xx0/s3c24x0_clk.c 272103 2014-09-25 11:38:26Z gavin $");
34
35#include <sys/param.h>
36#include <sys/systm.h>
37#include <sys/kernel.h>
38#include <sys/module.h>
39#include <sys/time.h>
40#include <sys/bus.h>
41#include <sys/resource.h>
42#include <sys/rman.h>
43#include <sys/timetc.h>
44
45#include <machine/bus.h>
46#include <machine/cpu.h>
47#include <machine/cpufunc.h>
48#include <machine/frame.h>
49#include <machine/resource.h>
50#include <machine/intr.h>
34
35#include <sys/param.h>
36#include <sys/systm.h>
37#include <sys/kernel.h>
38#include <sys/module.h>
39#include <sys/time.h>
40#include <sys/bus.h>
41#include <sys/resource.h>
42#include <sys/rman.h>
43#include <sys/timetc.h>
44
45#include <machine/bus.h>
46#include <machine/cpu.h>
47#include <machine/cpufunc.h>
48#include <machine/frame.h>
49#include <machine/resource.h>
50#include <machine/intr.h>
51#include
52#include
51#include <arm/samsung/s3c2xx0/s3c24x0reg.h>
52#include <arm/samsung/s3c2xx0/s3c24x0var.h>
53
54struct s3c24x0_timer_softc {
55 device_t dev;
56} timer_softc;
57
58static unsigned s3c24x0_timer_get_timecount(struct timecounter *tc);
59
60static struct timecounter s3c24x0_timer_timecounter = {

--- 227 unchanged lines hidden ---
53
54struct s3c24x0_timer_softc {
55 device_t dev;
56} timer_softc;
57
58static unsigned s3c24x0_timer_get_timecount(struct timecounter *tc);
59
60static struct timecounter s3c24x0_timer_timecounter = {

--- 227 unchanged lines hidden ---