Deleted Added
full compact
uart_bus_at91usart.c (261126) uart_bus_at91usart.c (279724)
1/*-
2 * Copyright (c) 2005 Olivier Houchard. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 * SUCH DAMAGE.
24 */
25
26#include "opt_uart.h"
27
28#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2005 Olivier Houchard. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 * SUCH DAMAGE.
24 */
25
26#include "opt_uart.h"
27
28#include <sys/cdefs.h>
29__FBSDID("$FreeBSD: head/sys/arm/at91/uart_bus_at91usart.c 261126 2014-01-24 16:50:15Z imp $");
29__FBSDID("$FreeBSD: head/sys/arm/at91/uart_bus_at91usart.c 279724 2015-03-07 15:24:15Z ian $");
30
31#include <sys/param.h>
32#include <sys/systm.h>
33#include <sys/bus.h>
34#include <sys/conf.h>
35#include <sys/kernel.h>
36#include <sys/module.h>
37#include <machine/bus.h>
38#include <sys/rman.h>
39#include <machine/resource.h>
40
41#include <dev/uart/uart.h>
42#include <dev/uart/uart_bus.h>
43#include <dev/uart/uart_cpu.h>
44
45#include <arm/at91/at91var.h>
46
47#include "uart_if.h"
48
30
31#include <sys/param.h>
32#include <sys/systm.h>
33#include <sys/bus.h>
34#include <sys/conf.h>
35#include <sys/kernel.h>
36#include <sys/module.h>
37#include <machine/bus.h>
38#include <sys/rman.h>
39#include <machine/resource.h>
40
41#include <dev/uart/uart.h>
42#include <dev/uart/uart_bus.h>
43#include <dev/uart/uart_cpu.h>
44
45#include <arm/at91/at91var.h>
46
47#include "uart_if.h"
48
49extern struct uart_class at91_usart_class;
49static int usart_at91_probe(device_t dev);
50
51static device_method_t usart_at91_methods[] = {
52 /* Device interface */
53 DEVMETHOD(device_probe, usart_at91_probe),
54 DEVMETHOD(device_attach, uart_bus_attach),
55 DEVMETHOD(device_detach, uart_bus_detach),
56 { 0, 0 }

--- 54 unchanged lines hidden ---
50static int usart_at91_probe(device_t dev);
51
52static device_method_t usart_at91_methods[] = {
53 /* Device interface */
54 DEVMETHOD(device_probe, usart_at91_probe),
55 DEVMETHOD(device_attach, uart_bus_attach),
56 DEVMETHOD(device_detach, uart_bus_detach),
57 { 0, 0 }

--- 54 unchanged lines hidden ---