diff options
author | Jan Engelhardt <jengelh@computergmbh.de> | 2008-01-22 20:41:07 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-02-09 22:46:44 +0000 |
commit | 2ffd6e182c4b9ae7bebc385c021e7d083bab406a (patch) | |
tree | 4ec54edaadc93b261a175b086e296055a3461aee /arch | |
parent | 72e7ae8141fa98084383e167b77d4497a59e3e10 (diff) | |
download | linux-3.10-2ffd6e182c4b9ae7bebc385c021e7d083bab406a.tar.gz linux-3.10-2ffd6e182c4b9ae7bebc385c021e7d083bab406a.tar.bz2 linux-3.10-2ffd6e182c4b9ae7bebc385c021e7d083bab406a.zip |
[ARM] constify function pointer tables
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/kernel/setup.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-davinci/clock.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index d3941a7b045..b7b0720bc1b 100644 --- a/arch/arm/kernel/setup.c +++ b/arch/arm/kernel/setup.c @@ -1001,7 +1001,7 @@ static void c_stop(struct seq_file *m, void *v) { } -struct seq_operations cpuinfo_op = { +const struct seq_operations cpuinfo_op = { .start = c_start, .next = c_next, .stop = c_stop, diff --git a/arch/arm/mach-davinci/clock.c b/arch/arm/mach-davinci/clock.c index 139ceaa35e2..4143828a968 100644 --- a/arch/arm/mach-davinci/clock.c +++ b/arch/arm/mach-davinci/clock.c @@ -290,7 +290,7 @@ static int davinci_ck_show(struct seq_file *m, void *v) return 0; } -static struct seq_operations davinci_ck_op = { +static const struct seq_operations davinci_ck_op = { .start = davinci_ck_start, .next = davinci_ck_next, .stop = davinci_ck_stop, @@ -302,7 +302,7 @@ static int davinci_ck_open(struct inode *inode, struct file *file) return seq_open(file, &davinci_ck_op); } -static struct file_operations proc_davinci_ck_operations = { +static const struct file_operations proc_davinci_ck_operations = { .open = davinci_ck_open, .read = seq_read, .llseek = seq_lseek, |