uart_bus.h (64c4dfcd2687461fb915236cc51a3c1b48db383b) uart_bus.h (c90ea831121be188c1ad43de96c4835f7e6a63d9)
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 2003 Marcel Moolenaar
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

132 struct tty *tp;
133 } u_tty;
134 /* Keyboard specific data. */
135 struct {
136 } u_kbd;
137 } sc_u;
138};
139
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 2003 Marcel Moolenaar
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

132 struct tty *tp;
133 } u_tty;
134 /* Keyboard specific data. */
135 struct {
136 } u_kbd;
137 } sc_u;
138};
139
140extern devclass_t uart_devclass;
141extern const char uart_driver_name[];
142
143int uart_bus_attach(device_t dev);
144int uart_bus_detach(device_t dev);
145int uart_bus_resume(device_t dev);
146serdev_intr_t *uart_bus_ihand(device_t dev, int ipend);
147int uart_bus_ipend(device_t dev);
148int uart_bus_probe(device_t dev, int regshft, int regiowidth, int rclk, int rid, int chan, int quirks);

--- 76 unchanged lines hidden ---
140extern const char uart_driver_name[];
141
142int uart_bus_attach(device_t dev);
143int uart_bus_detach(device_t dev);
144int uart_bus_resume(device_t dev);
145serdev_intr_t *uart_bus_ihand(device_t dev, int ipend);
146int uart_bus_ipend(device_t dev);
147int uart_bus_probe(device_t dev, int regshft, int regiowidth, int rclk, int rid, int chan, int quirks);

--- 76 unchanged lines hidden ---