Deleted Added
full compact
uart_cpu_s3c2410.c (256196) uart_cpu_s3c2410.c (272103)
1/*
2 * Copyright (c) 2003 Marcel Moolenaar
3 * Copyright (c) 2007 Andrew Turner
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#include <sys/cdefs.h>
1/*
2 * Copyright (c) 2003 Marcel Moolenaar
3 * Copyright (c) 2007 Andrew Turner
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#include <sys/cdefs.h>
29__FBSDID("$FreeBSD: head/sys/arm/s3c2xx0/uart_cpu_s3c2410.c 256196 2013-10-09 17:05:02Z dim $");
29__FBSDID("$FreeBSD: head/sys/arm/samsung/s3c2xx0/uart_cpu_s3c2410.c 272103 2014-09-25 11:38:26Z gavin $");
30
31#include <sys/param.h>
32#include <sys/systm.h>
33#include <sys/bus.h>
34#include <sys/cons.h>
35#include <machine/bus.h>
36
37#include <dev/uart/uart.h>
38#include <dev/uart/uart_cpu.h>
39
30
31#include <sys/param.h>
32#include <sys/systm.h>
33#include <sys/bus.h>
34#include <sys/cons.h>
35#include <machine/bus.h>
36
37#include <dev/uart/uart.h>
38#include <dev/uart/uart_cpu.h>
39
40#include
40#include <arm/samsung/s3c2xx0/s3c2xx0var.h>
41
42bus_space_tag_t uart_bus_space_io;
43bus_space_tag_t uart_bus_space_mem;
44
45extern struct uart_ops uart_s3c2410_ops;
46
47vm_offset_t s3c2410_uart_vaddr;
48unsigned int s3c2410_pclk;

--- 28 unchanged lines hidden ---
41
42bus_space_tag_t uart_bus_space_io;
43bus_space_tag_t uart_bus_space_mem;
44
45extern struct uart_ops uart_s3c2410_ops;
46
47vm_offset_t s3c2410_uart_vaddr;
48unsigned int s3c2410_pclk;

--- 28 unchanged lines hidden ---