fdc_isa.c (718cf2ccb9956613756ab15d7a0e28f2c8e91cab) | fdc_isa.c (5fe4723c701cae7118f3293d9d1f173dcbb062a2) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2004-2005 M. Warner Losh. 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 --- 210 unchanged lines hidden (view full) --- 219 220static driver_t fdc_driver = { 221 "fdc", 222 fdc_methods, 223 sizeof(struct fdc_data) 224}; 225 226DRIVER_MODULE(fdc, isa, fdc_driver, fdc_devclass, 0, 0); | 1/*- 2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3 * 4 * Copyright (c) 2004-2005 M. Warner Losh. 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 --- 210 unchanged lines hidden (view full) --- 219 220static driver_t fdc_driver = { 221 "fdc", 222 fdc_methods, 223 sizeof(struct fdc_data) 224}; 225 226DRIVER_MODULE(fdc, isa, fdc_driver, fdc_devclass, 0, 0); |
227ISA_PNP_INFO(fdc_ids); |
|