Skip to content

Commit fa155ca

Browse files
committed
drivers: uio: remove unneeded MODULE_VERSION() usage
Remove MODULE_VERSION(), as it isn't needed at all: the only version making sense is the kernel version. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
1 parent 9cb2456 commit fa155ca

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

drivers/uio/uio_hv_generic.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,6 @@ hyperv_module_exit(void)
393393
module_init(hyperv_module_init);
394394
module_exit(hyperv_module_exit);
395395

396-
MODULE_VERSION(DRIVER_VERSION);
397396
MODULE_LICENSE("GPL v2");
398397
MODULE_AUTHOR(DRIVER_AUTHOR);
399398
MODULE_DESCRIPTION(DRIVER_DESC);

drivers/uio/uio_pci_generic.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,6 @@ static struct pci_driver uio_pci_driver = {
136136
};
137137

138138
module_pci_driver(uio_pci_driver);
139-
MODULE_VERSION(DRIVER_VERSION);
140139
MODULE_LICENSE("GPL v2");
141140
MODULE_AUTHOR(DRIVER_AUTHOR);
142141
MODULE_DESCRIPTION(DRIVER_DESC);

drivers/uio/uio_pruss.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,5 @@ static struct platform_driver pruss_driver = {
267267
module_platform_driver(pruss_driver);
268268

269269
MODULE_LICENSE("GPL v2");
270-
MODULE_VERSION(DRV_VERSION);
271270
MODULE_AUTHOR("Amit Chatterjee <amit.chatterjee@ti.com>");
272271
MODULE_AUTHOR("Pratheesh Gangadhar <pratheesh@ti.com>");

0 commit comments

Comments
 (0)