From: Arvind Yadav Date: Wed, 23 Aug 2017 17:17:15 +0000 (+0530) Subject: vfio: platform: constify amba_id X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=417fb50d5516e8526769c16ff5b92de47adbe727;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git 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 Signed-off-by: Alex Williamson --- 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 }, };