diff options
author | Stephen Hemminger <stephen@networkplumber.org> | 2013-02-10 15:57:38 +1030 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2013-02-11 15:32:17 +1030 |
commit | 9350393239153c4a98cbed4d69b9ed81e37d5e74 (patch) | |
tree | 180ddb2f2968721c52ed9b5917378aff00c7b7f6 /drivers/s390 | |
parent | 0d34cc2d6d904e2d0160e42734bccc1cb391cec0 (diff) | |
download | op-kernel-dev-9350393239153c4a98cbed4d69b9ed81e37d5e74.zip op-kernel-dev-9350393239153c4a98cbed4d69b9ed81e37d5e74.tar.gz |
virtio: make config_ops const
It is just a table of function pointers, make it const for cleanliness and security
reasons.
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/s390')
-rw-r--r-- | drivers/s390/kvm/kvm_virtio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/kvm/kvm_virtio.c b/drivers/s390/kvm/kvm_virtio.c index 8491111..7d08fba 100644 --- a/drivers/s390/kvm/kvm_virtio.c +++ b/drivers/s390/kvm/kvm_virtio.c @@ -275,7 +275,7 @@ static const char *kvm_bus_name(struct virtio_device *vdev) /* * The config ops structure as defined by virtio config */ -static struct virtio_config_ops kvm_vq_configspace_ops = { +static const struct virtio_config_ops kvm_vq_configspace_ops = { .get_features = kvm_get_features, .finalize_features = kvm_finalize_features, .get = kvm_get, |