| To: | Ralf Baechle <ralf@linux-mips.org> |
|---|---|
| Subject: | [PATCH] [MIPS]: constify function pointer tables |
| From: | Jan Engelhardt <jengelh@computergmbh.de> |
| Date: | Tue, 22 Jan 2008 20:42:33 +0100 (CET) |
| Cc: | linux-mips@linux-mips.org |
| In-reply-to: | <54038cd4f87a03884e4f59f8f3697889dfb63c54.1201030614.git.jengelh@computergmbh.de> |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <54038cd4f87a03884e4f59f8f3697889dfb63c54.1201030614.git.jengelh@computergmbh.de> |
| Sender: | linux-mips-bounce@linux-mips.org |
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
---
arch/mips/basler/excite/excite_iodev.c | 2 +-
arch/mips/kernel/proc.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/mips/basler/excite/excite_iodev.c
b/arch/mips/basler/excite/excite_iodev.c
index 6af0b21..476d20e 100644
--- a/arch/mips/basler/excite/excite_iodev.c
+++ b/arch/mips/basler/excite/excite_iodev.c
@@ -48,7 +48,7 @@ static DECLARE_WAIT_QUEUE_HEAD(wq);
-static struct file_operations fops =
+static const struct file_operations fops =
{
.owner = THIS_MODULE,
.open = iodev_open,
diff --git a/arch/mips/kernel/proc.c b/arch/mips/kernel/proc.c
index 6e6e947..f30e035 100644
--- a/arch/mips/kernel/proc.c
+++ b/arch/mips/kernel/proc.c
@@ -89,7 +89,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,
--
1.5.3.4
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: quick question on 64-bit values with 32-bit inline assembly, Chris Friesen |
|---|---|
| Next by Date: | Re: quick question on 64-bit values with 32-bit inline assembly, Ralf Baechle |
| Previous by Thread: | (no subject), Thiemo Seufer |
| Next by Thread: | Re: [PATCH] [MIPS]: constify function pointer tables, Ralf Baechle |
| Indexes: | [Date] [Thread] [Top] [All Lists] |