From: Herbert Xu Date: Tue, 16 Dec 2014 22:54:03 +0000 (+0200) Subject: virtio_pci: restore module attributes X-Git-Tag: Ubuntu-5.2.0-15.16~12198^2 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=5ff16110c637726111662c1df41afd9df7ef36bd;p=mirror_ubuntu-eoan-kernel.git virtio_pci: restore module attributes When the virtio_pci driver was moved into virtio_pci_legacy.c the module licence and other attributes went AWOL. This patch restores them. Signed-off-by: Herbert Xu Signed-off-by: Michael S. Tsirkin --- diff --git a/drivers/virtio/virtio_pci_common.c b/drivers/virtio/virtio_pci_common.c index 59d3685c31b4..2ef9529809d8 100644 --- a/drivers/virtio/virtio_pci_common.c +++ b/drivers/virtio/virtio_pci_common.c @@ -494,3 +494,8 @@ static struct pci_driver virtio_pci_driver = { }; module_pci_driver(virtio_pci_driver); + +MODULE_AUTHOR("Anthony Liguori "); +MODULE_DESCRIPTION("virtio-pci"); +MODULE_LICENSE("GPL"); +MODULE_VERSION("1");