Deleted Added
sdiff udiff text old ( 249999 ) new ( 250840 )
full compact
1/*-
2 * Copyright (c) 2009-2010 The FreeBSD Foundation
3 * All rights reserved.
4 *
5 * This software was developed by Semihalf under sponsorship from
6 * the FreeBSD Foundation.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30#include <sys/cdefs.h>
31__FBSDID("$FreeBSD: head/sys/dev/uart/uart_bus_fdt.c 250840 2013-05-21 03:05:49Z marcel $");
32
33#include <sys/param.h>
34#include <sys/bus.h>
35#include <sys/kernel.h>
36#include <sys/module.h>
37
38#include <machine/bus.h>
39#include <machine/fdt.h>

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

119 if ((err = uart_fdt_get_clock(node, &clock)) != 0)
120 return (err);
121 uart_fdt_get_shift(node, &shift);
122
123 return (uart_bus_probe(dev, (int)shift, (int)clock, 0, 0));
124}
125
126DRIVER_MODULE(uart, simplebus, uart_fdt_driver, uart_devclass, 0, 0);