diff options
author | Jan Engelhardt <jengelh@computergmbh.de> | 2008-01-22 18:30:06 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 15:10:55 -0800 |
commit | a1f6f5a7689098f01d9b7b7181795ee78563ce37 (patch) | |
tree | 75a8c5a0435a7ea7dfc248f2b36d1b0dcfba75d2 /net/x25 | |
parent | 91cde6f7d295a9eafea51d821f6e609288736c79 (diff) | |
download | linux-3.10-a1f6f5a7689098f01d9b7b7181795ee78563ce37.tar.gz linux-3.10-a1f6f5a7689098f01d9b7b7181795ee78563ce37.tar.bz2 linux-3.10-a1f6f5a7689098f01d9b7b7181795ee78563ce37.zip |
[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 78b05342606..3f52b09bed0 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 = { .release = seq_release, }; -static struct file_operations x25_seq_forward_fops = { +static const struct file_operations x25_seq_forward_fops = { .owner = THIS_MODULE, .open = x25_seq_forward_open, .read = seq_read, |