From: Jan Engelhardt Date: Thu, 31 Jan 2008 05:43:32 +0000 (-0500) Subject: Input: constify function pointer tables (seq_operations) X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=cec69c376be132a6afdc55b8090a389eaa3cd770;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git Input: constify function pointer tables (seq_operations) Signed-off-by: Jan Engelhardt Signed-off-by: Dmitry Torokhov --- diff --git a/drivers/input/input.c b/drivers/input/input.c index 6ee8af8963f9..f02c242c3114 100644 --- a/drivers/input/input.c +++ b/drivers/input/input.c @@ -821,7 +821,7 @@ static int input_devices_seq_show(struct seq_file *seq, void *v) return 0; } -static struct seq_operations input_devices_seq_ops = { +static const struct seq_operations input_devices_seq_ops = { .start = input_devices_seq_start, .next = input_devices_seq_next, .stop = input_devices_seq_stop, @@ -874,7 +874,7 @@ static int input_handlers_seq_show(struct seq_file *seq, void *v) return 0; } -static struct seq_operations input_handlers_seq_ops = { +static const struct seq_operations input_handlers_seq_ops = { .start = input_handlers_seq_start, .next = input_handlers_seq_next, .stop = input_handlers_seq_stop,