1
0
Fork 0
alistair23-linux/drivers/misc/lis3lv02d
Luis R. Rodriguez 9c27847dda kernel/params: constify struct kernel_param_ops uses
Most code already uses consts for the struct kernel_param_ops,
sweep the kernel for the last offending stragglers. Other than
include/linux/moduleparam.h and kernel/params.c all other changes
were generated with the following Coccinelle SmPL patch. Merge
conflicts between trees can be handled with Coccinelle.

In the future git could get Coccinelle merge support to deal with
patch --> fail --> grammar --> Coccinelle --> new patch conflicts
automatically for us on patches where the grammar is available and
the patch is of high confidence. Consider this a feature request.

Test compiled on x86_64 against:

	* allnoconfig
	* allmodconfig
	* allyesconfig

@ const_found @
identifier ops;
@@

const struct kernel_param_ops ops = {
};

@ const_not_found depends on !const_found @
identifier ops;
@@

-struct kernel_param_ops ops = {
+const struct kernel_param_ops ops = {
};

Generated-by: Coccinelle SmPL
Cc: Rusty Russell <rusty@rustcorp.com.au>
Cc: Junio C Hamano <gitster@pobox.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Kees Cook <keescook@chromium.org>
Cc: Tejun Heo <tj@kernel.org>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: cocci@systeme.lip6.fr
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2015-05-28 11:32:10 +09:30
..
Kconfig Move lis3lv02d drivers to drivers/misc 2011-03-21 17:59:36 +01:00
Makefile Move lis3lv02d drivers to drivers/misc 2011-03-21 17:59:36 +01:00
lis3lv02d.c kernel/params: constify struct kernel_param_ops uses 2015-05-28 11:32:10 +09:30
lis3lv02d.h drivers/misc/lis3lv02d: remove lis3lv02d driver DT init 2012-09-26 14:18:11 -07:00
lis3lv02d_i2c.c misc: constify of_device_id array 2015-03-16 21:10:28 +01:00
lis3lv02d_spi.c misc: constify of_device_id array 2015-03-16 21:10:28 +01:00