From: Arvind Yadav Date: Wed, 23 Aug 2017 17:17:15 +0000 (+0530) Subject: vfio: platform: constify amba_id X-Git-Tag: android-x86-8.1-r1~2710^2 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=417fb50d5516e8526769c16ff5b92de47adbe727;p=android-x86%2Fkernel.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 }, };