vga_pci.c (04e8183fd16306905e5b56602fc3938cacf271d6) vga_pci.c (97a410130f1eccd382455ec2515f8188c8c6cf64)
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 2005 John Baldwin <jhb@FreeBSD.org>
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:

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

782};
783
784static driver_t vga_pci_driver = {
785 "vgapci",
786 vga_pci_methods,
787 sizeof(struct vga_pci_softc),
788};
789
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 2005 John Baldwin <jhb@FreeBSD.org>
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:

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

782};
783
784static driver_t vga_pci_driver = {
785 "vgapci",
786 vga_pci_methods,
787 sizeof(struct vga_pci_softc),
788};
789
790static devclass_t vga_devclass;
791
792DRIVER_MODULE(vgapci, pci, vga_pci_driver, vga_devclass, 0, 0);
790DRIVER_MODULE(vgapci, pci, vga_pci_driver, 0, 0);
793MODULE_DEPEND(vgapci, x86bios, 1, 1, 1);
791MODULE_DEPEND(vgapci, x86bios, 1, 1, 1);