Re: [PATCH] blink: Only blink when parameter is set
From: Randy Dunlap
Date: Mon Jun 18 2007 - 10:43:48 EST
Bernhard Walle wrote:
* Randy Dunlap <randy.dunlap@xxxxxxxxxx> [2007-06-18 06:26]:
+static int blink = 0;
no need to init to 0.
Does it harm?
It adds space to the binary file in some cases and it is kernel
convention not to init statics to NULL or 0 since that is already
guaranteed for them.
+module_param(blink, bool, S_IRUGO);
+MODULE_PARM_DESC(blink, "Enable blinking (without that, the module does nothing)\n");
unneeded "\n"
Fixed. Please use the following patch.
--
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/