media: cx25821: get rid of CX25821_VERSION_CODE
authorMauro Carvalho Chehab <mchehab@s-opensource.com>
Sat, 24 Jun 2017 20:40:24 +0000 (16:40 -0400)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Thu, 20 Jul 2017 20:21:38 +0000 (16:21 -0400)
This is used just for printing a version number. As this is
never incremented, it makes no sense to keep it :-)

Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/pci/cx25821/cx25821-core.c
drivers/media/pci/cx25821/cx25821.h

index fbc0229..04aa4a6 100644 (file)
@@ -1390,10 +1390,7 @@ static struct pci_driver cx25821_pci_driver = {
 
 static int __init cx25821_init(void)
 {
-       pr_info("driver version %d.%d.%d loaded\n",
-               (CX25821_VERSION_CODE >> 16) & 0xff,
-               (CX25821_VERSION_CODE >> 8) & 0xff,
-               CX25821_VERSION_CODE & 0xff);
+       pr_info("driver loaded\n");
        return pci_register_driver(&cx25821_pci_driver);
 }
 
index 0f20e89..b3eb2da 100644 (file)
@@ -41,8 +41,6 @@
 #include <linux/version.h>
 #include <linux/mutex.h>
 
-#define CX25821_VERSION_CODE KERNEL_VERSION(0, 0, 106)
-
 #define UNSET (-1U)
 #define NO_SYNC_LINE (-1U)