diff mbox

[net-next] dummy: use MODULE_VERSION

Message ID 1418172108-10522-1-git-send-email-fbl@redhat.com
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

Flavio Leitner Dec. 10, 2014, 12:41 a.m. UTC
Use MODULE_VERSION() now that dummy driver has a version.

Signed-off-by: Flavio Leitner <fbl@redhat.com>
---
 drivers/net/dummy.c | 1 +
 1 file changed, 1 insertion(+)

Comments

David Miller Dec. 10, 2014, 2:52 a.m. UTC | #1
From: Flavio Leitner <fbl@redhat.com>
Date: Tue,  9 Dec 2014 22:41:48 -0200

> Use MODULE_VERSION() now that dummy driver has a version.
> 
> Signed-off-by: Flavio Leitner <fbl@redhat.com>

Applied, thanks a lot Flavio.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/net/dummy.c b/drivers/net/dummy.c
index 413ca4f..49adbf1 100644
--- a/drivers/net/dummy.c
+++ b/drivers/net/dummy.c
@@ -225,3 +225,4 @@  module_init(dummy_init_module);
 module_exit(dummy_cleanup_module);
 MODULE_LICENSE("GPL");
 MODULE_ALIAS_RTNL_LINK(DRV_NAME);
+MODULE_VERSION(DRV_VERSION);