From: Thadeu Lima de Souza Cascardo Date: Tue, 18 May 2010 20:13:24 +0000 (-0400) Subject: Remove unused parameter size. X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fkernel%2Fsamples%2Fhello2%2F.git;a=commitdiff_plain;h=4c7fae23108c1b8fcc27375a6038caf6d20f1138 Remove unused parameter size. --- diff --git a/hello.c b/hello.c index 8a5a20b..f5d9670 100644 --- a/hello.c +++ b/hello.c @@ -27,9 +27,6 @@ MODULE_LICENSE("GPL"); MODULE_AUTHOR("Thadeu Lima de Souza Cascardo "); MODULE_DESCRIPTION("Hello, world"); -static int size = 1; -module_param_named(size, size, int, S_IRUGO | S_IWUSR); - struct hello { int times; char greeting[0];