diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-08-23 19:17:15 +0200 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2017-08-30 22:03:42 +0200 |
commit | 417fb50d5516e8526769c16ff5b92de47adbe727 (patch) | |
tree | 95184e91a17b89957c53425a192f20d8b2ffeb20 /drivers/vfio | |
parent | vfio: Stall vfio_del_group_dev() for container group detach (diff) | |
download | linux-417fb50d5516e8526769c16ff5b92de47adbe727.tar.xz linux-417fb50d5516e8526769c16ff5b92de47adbe727.zip |
vfio: platform: constify amba_id
amba_id are not supposed to change at runtime. All functions
working with const amba_id. So mark the non-const structs as const.
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'drivers/vfio')
-rw-r--r-- | drivers/vfio/platform/vfio_amba.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/vfio/platform/vfio_amba.c b/drivers/vfio/platform/vfio_amba.c index 31372fbf6c5b..62dfbfeaabfc 100644 --- a/drivers/vfio/platform/vfio_amba.c +++ b/drivers/vfio/platform/vfio_amba.c @@ -93,7 +93,7 @@ static int vfio_amba_remove(struct amba_device *adev) return -EINVAL; } -static struct amba_id pl330_ids[] = { +static const struct amba_id pl330_ids[] = { { 0, 0 }, }; |