phyp_console.c (5001c579baff78719919d79ec054207aa2938dbd) phyp_console.c (c90ea831121be188c1ad43de96c4835f7e6a63d9)
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (C) 2011 by Nathan Whitehorn. 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:

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

105};
106
107static driver_t uart_phyp_driver = {
108 "uart",
109 uart_phyp_methods,
110 sizeof(struct uart_phyp_softc),
111};
112
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (C) 2011 by Nathan Whitehorn. 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:

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

105};
106
107static driver_t uart_phyp_driver = {
108 "uart",
109 uart_phyp_methods,
110 sizeof(struct uart_phyp_softc),
111};
112
113DRIVER_MODULE(uart_phyp, vdevice, uart_phyp_driver, uart_devclass, 0, 0);
113DRIVER_MODULE(uart_phyp, vdevice, uart_phyp_driver, 0, 0);
114
115static cn_probe_t uart_phyp_cnprobe;
116static cn_init_t uart_phyp_cninit;
117static cn_term_t uart_phyp_cnterm;
118static cn_getc_t uart_phyp_cngetc;
119static cn_putc_t uart_phyp_cnputc;
120static cn_grab_t uart_phyp_cngrab;
121static cn_ungrab_t uart_phyp_cnungrab;

--- 339 unchanged lines hidden ---
114
115static cn_probe_t uart_phyp_cnprobe;
116static cn_init_t uart_phyp_cninit;
117static cn_term_t uart_phyp_cnterm;
118static cn_getc_t uart_phyp_cngetc;
119static cn_putc_t uart_phyp_cnputc;
120static cn_grab_t uart_phyp_cngrab;
121static cn_ungrab_t uart_phyp_cnungrab;

--- 339 unchanged lines hidden ---