pio.c (98e0ffaefb0f241cda3a72395d3be04192ae0d47) | pio.c (b08b5f558b6a6dd06dc5dbe2a288cc56c65bb69d) |
---|---|
1/*- 2 * Copyright (c) 2014 Ruslan Bukin <br@bsdpad.com> 3 * All rights reserved. 4 * 5 * This software was developed by SRI International and the University of 6 * Cambridge Computer Laboratory under DARPA/AFRL contract (FA8750-10-C-0237) 7 * ("CTSRD"), as part of the DARPA CRASH research programme. 8 * --- 194 unchanged lines hidden (view full) --- 203}; 204 205static driver_t pio_driver = { 206 "altera_pio", 207 pio_methods, 208 sizeof(struct pio_softc), 209}; 210 | 1/*- 2 * Copyright (c) 2014 Ruslan Bukin <br@bsdpad.com> 3 * All rights reserved. 4 * 5 * This software was developed by SRI International and the University of 6 * Cambridge Computer Laboratory under DARPA/AFRL contract (FA8750-10-C-0237) 7 * ("CTSRD"), as part of the DARPA CRASH research programme. 8 * --- 194 unchanged lines hidden (view full) --- 203}; 204 205static driver_t pio_driver = { 206 "altera_pio", 207 pio_methods, 208 sizeof(struct pio_softc), 209}; 210 |
211static devclass_t pio_devclass; 212 213DRIVER_MODULE(altera_pio, simplebus, pio_driver, pio_devclass, 0, 0); | 211DRIVER_MODULE(altera_pio, simplebus, pio_driver, 0, 0); |