On Wed, Jun 26, 2019 at 11:52:48AM -0700, Catherine Sullivan wrote: > Add a driver framework for the Compute Engine Virtual NIC that will be > available in the future. > > +static int __init gvnic_init_module(void) > +{ > + return pci_register_driver(&gvnic_driver); > +} > + > +static void __exit gvnic_exit_module(void) > +{ > + pci_unregister_driver(&gvnic_driver); > +} > + > +module_init(gvnic_init_module); > +module_exit(gvnic_exit_module);
module_pci_driver()? Andrew