aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/s390/char/zcore.c
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@computergmbh.de>2008-01-26 14:11:29 +0100
committerMartin Schwidefsky <schwidefsky@de.ibm.com>2008-01-26 14:11:32 +0100
commit5c81cdbeff72e7fc2eb62ee5dc26197e54f9a06c (patch)
treed679ff35c002333b7653c79244caf730b79d607a /drivers/s390/char/zcore.c
parent[S390] do local_irq_restore while spinning in spin_lock_irqsave. (diff)
downloadlinux-dev-5c81cdbeff72e7fc2eb62ee5dc26197e54f9a06c.tar.xz
linux-dev-5c81cdbeff72e7fc2eb62ee5dc26197e54f9a06c.zip
[S390] constify function pointer tables.
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'drivers/s390/char/zcore.c')
-rw-r--r--drivers/s390/char/zcore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/char/zcore.c b/drivers/s390/char/zcore.c
index 7073daf77981..f523501e6e6c 100644
--- a/drivers/s390/char/zcore.c
+++ b/drivers/s390/char/zcore.c
@@ -470,7 +470,7 @@ static loff_t zcore_lseek(struct file *file, loff_t offset, int orig)
return rc;
}
-static struct file_operations zcore_fops = {
+static const struct file_operations zcore_fops = {
.owner = THIS_MODULE,
.llseek = zcore_lseek,
.read = zcore_read,