Commit 7c0564fb authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Russell King

[PCMCIA] kill useless CS_RELEASE printing

We've forked from pcmcia_cs long time ago so this version number
printing is pretty useless.  IMHO all printks should go away completly
but I'll rather leave that to the individual maintainers..
parent d2d20c26
...@@ -140,7 +140,7 @@ static int __init au1000_pcmcia_driver_init(void) ...@@ -140,7 +140,7 @@ static int __init au1000_pcmcia_driver_init(void)
struct pcmcia_state state; struct pcmcia_state state;
unsigned int i; unsigned int i;
printk("\nAu1x00 PCMCIA (CS release %s)\n", CS_RELEASE); printk("\nAu1x00 PCMCIA\n");
#ifndef CONFIG_64BIT_PHYS_ADDR #ifndef CONFIG_64BIT_PHYS_ADDR
printk(KERN_ERR "Au1x00 PCMCIA 36 bit IO support not enabled\n"); printk(KERN_ERR "Au1x00 PCMCIA 36 bit IO support not enabled\n");
......
...@@ -82,7 +82,7 @@ ...@@ -82,7 +82,7 @@
#define OPTIONS PCI_OPT CB_OPT PM_OPT #define OPTIONS PCI_OPT CB_OPT PM_OPT
#endif #endif
static const char *release = "Linux Kernel Card Services " CS_RELEASE; static const char *release = "Linux Kernel Card Services";
static const char *options = "options: " OPTIONS; static const char *options = "options: " OPTIONS;
/*====================================================================*/ /*====================================================================*/
...@@ -90,8 +90,7 @@ static const char *options = "options: " OPTIONS; ...@@ -90,8 +90,7 @@ static const char *options = "options: " OPTIONS;
/* Module parameters */ /* Module parameters */
MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>"); MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>");
MODULE_DESCRIPTION("Linux Kernel Card Services " CS_RELEASE MODULE_DESCRIPTION("Linux Kernel Card Services\noptions:" OPTIONS);
"\n options:" OPTIONS);
MODULE_LICENSE("Dual MPL/GPL"); MODULE_LICENSE("Dual MPL/GPL");
#define INT_MODULE_PARM(n, v) static int n = v; MODULE_PARM(n, "i") #define INT_MODULE_PARM(n, v) static int n = v; MODULE_PARM(n, "i")
......
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
/* Module parameters */ /* Module parameters */
MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>"); MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>");
MODULE_DESCRIPTION("PCMCIA Driver Services " CS_RELEASE); MODULE_DESCRIPTION("PCMCIA Driver Services");
MODULE_LICENSE("Dual MPL/GPL"); MODULE_LICENSE("Dual MPL/GPL");
#define INT_MODULE_PARM(n, v) static int n = v; MODULE_PARM(n, "i") #define INT_MODULE_PARM(n, v) static int n = v; MODULE_PARM(n, "i")
......
...@@ -946,7 +946,7 @@ static int __init sa11xx_pcmcia_init(void) ...@@ -946,7 +946,7 @@ static int __init sa11xx_pcmcia_init(void)
{ {
int ret; int ret;
printk(KERN_INFO "SA11xx PCMCIA (CS release %s)\n", CS_RELEASE); printk(KERN_INFO "SA11xx PCMCIA\n");
ret = cpufreq_register_notifier(&sa1100_pcmcia_notifier_block, ret = cpufreq_register_notifier(&sa1100_pcmcia_notifier_block,
CPUFREQ_TRANSITION_NOTIFIER); CPUFREQ_TRANSITION_NOTIFIER);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment