diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2009-11-28 07:50:26 +0100 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2010-02-24 04:52:32 +0100 |
commit | 1dff399616a79b8ef5d61ad68f2ef1e1f590b465 (patch) | |
tree | aa463b02bfdabc008a9e62717d25e259585e0f3d /drivers/char/hvc_beat.c | |
parent | virtio: console: statically initialize virtio_cons (diff) | |
download | linux-1dff399616a79b8ef5d61ad68f2ef1e1f590b465.tar.xz linux-1dff399616a79b8ef5d61ad68f2ef1e1f590b465.zip |
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_beat.c')
-rw-r--r-- | drivers/char/hvc_beat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/hvc_beat.c b/drivers/char/hvc_beat.c index 0afc8b82212e..6913fc33270c 100644 --- a/drivers/char/hvc_beat.c +++ b/drivers/char/hvc_beat.c @@ -84,7 +84,7 @@ static int hvc_beat_put_chars(uint32_t vtermno, const char *buf, int cnt) return cnt; } -static struct hv_ops hvc_beat_get_put_ops = { +static const struct hv_ops hvc_beat_get_put_ops = { .get_chars = hvc_beat_get_chars, .put_chars = hvc_beat_put_chars, }; |