summaryrefslogtreecommitdiffstats
path: root/drivers/char/hvc_udbg.c
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2009-11-28 12:20:26 +0530
committerRusty Russell <rusty@rustcorp.com.au>2010-02-24 14:22:32 +1030
commit1dff399616a79b8ef5d61ad68f2ef1e1f590b465 (patch)
treeaa463b02bfdabc008a9e62717d25e259585e0f3d /drivers/char/hvc_udbg.c
parent971f3390003619ea4ac0b20ee93dfd3209025790 (diff)
downloadop-kernel-dev-1dff399616a79b8ef5d61ad68f2ef1e1f590b465.zip
op-kernel-dev-1dff399616a79b8ef5d61ad68f2ef1e1f590b465.tar.gz
hvc_console: make the ops pointer const.
This is nicer for modern R/O protection. And noone needs it non-const, so constify the callers as well. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Amit Shah <amit.shah@redhat.com> To: Christian Borntraeger <borntraeger@de.ibm.com> Cc: linuxppc-dev@ozlabs.org
Diffstat (limited to 'drivers/char/hvc_udbg.c')
-rw-r--r--drivers/char/hvc_udbg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/hvc_udbg.c b/drivers/char/hvc_udbg.c
index bd63ba8..b0957e6 100644
--- a/drivers/char/hvc_udbg.c
+++ b/drivers/char/hvc_udbg.c
@@ -58,7 +58,7 @@ static int hvc_udbg_get(uint32_t vtermno, char *buf, int count)
return i;
}
-static struct hv_ops hvc_udbg_ops = {
+static const struct hv_ops hvc_udbg_ops = {
.get_chars = hvc_udbg_get,
.put_chars = hvc_udbg_put,
};
OpenPOWER on IntegriCloud