tegra_uart.c (b9cbd68d1cbbb21eade18182a797d5fa7d0dc110) tegra_uart.c (c90ea831121be188c1ad43de96c4835f7e6a63d9)
1/*-
2 * Copyright (c) 2016 Michal Meloun <mmel@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

243};
244
245static driver_t tegra_uart_driver = {
246 uart_driver_name,
247 tegra_uart_bus_methods,
248 sizeof(struct tegra_softc),
249};
250
1/*-
2 * Copyright (c) 2016 Michal Meloun <mmel@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

243};
244
245static driver_t tegra_uart_driver = {
246 uart_driver_name,
247 tegra_uart_bus_methods,
248 sizeof(struct tegra_softc),
249};
250
251DRIVER_MODULE(tegra_uart, simplebus, tegra_uart_driver, uart_devclass,
252 0, 0);
251DRIVER_MODULE(tegra_uart, simplebus, tegra_uart_driver, 0, 0);