On Mon, May 11, 2020 at 01:23:46PM +0200, Jiri Pirko wrote:
> Fri, May 01, 2020 at 01:20:49AM CEST, [email protected] wrote:
> >Add PCI interface driver for Prestera Switch ASICs family devices, which
> >provides:
[...]
>
> This looks very specific. Is is related to 0xC804?
>
Sorry, I missed this question. But I am not sure I got it.
>
> >+ .id_table = prestera_pci_devices,
> >+ .probe = prestera_pci_probe,
> >+ .remove = prestera_pci_remove,
> >+};
> >+
> >+static int __init prestera_pci_init(void)
> >+{
> >+ return pci_register_driver(&prestera_pci_driver);
> >+}
> >+
> >+static void __exit prestera_pci_exit(void)
> >+{
> >+ pci_unregister_driver(&prestera_pci_driver);
> >+}
> >+
> >+module_init(prestera_pci_init);
> >+module_exit(prestera_pci_exit);
> >+
> >+MODULE_AUTHOR("Marvell Semi.");
>
> Author is you, not a company.
>
>
> >+MODULE_LICENSE("Dual BSD/GPL");
> >+MODULE_DESCRIPTION("Marvell Prestera switch PCI interface");
> >--
> >2.17.1
> >