diff options
author | Jan Engelhardt <jengelh@computergmbh.de> | 2008-01-22 21:30:06 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:10:55 -0500 |
commit | a1f6f5a7689098f01d9b7b7181795ee78563ce37 (patch) | |
tree | 75a8c5a0435a7ea7dfc248f2b36d1b0dcfba75d2 /net/x25 | |
parent | 91cde6f7d295a9eafea51d821f6e609288736c79 (diff) |
[AF_X25]: constify function pointer tables
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/x25')
-rw-r--r-- | net/x25/x25_proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/x25/x25_proc.c b/net/x25/x25_proc.c index 78b05342606e..3f52b09bed03 100644 --- a/net/x25/x25_proc.c +++ b/net/x25/x25_proc.c | |||
@@ -293,7 +293,7 @@ static const struct file_operations x25_seq_route_fops = { | |||
293 | .release = seq_release, | 293 | .release = seq_release, |
294 | }; | 294 | }; |
295 | 295 | ||
296 | static struct file_operations x25_seq_forward_fops = { | 296 | static const struct file_operations x25_seq_forward_fops = { |
297 | .owner = THIS_MODULE, | 297 | .owner = THIS_MODULE, |
298 | .open = x25_seq_forward_open, | 298 | .open = x25_seq_forward_open, |
299 | .read = seq_read, | 299 | .read = seq_read, |