[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <d055db1ba7813edb095992f938c8d41e7e1c0ebb.1503508563.git.arvind.yadav.cs@gmail.com>
Date: Wed, 23 Aug 2017 22:47:15 +0530
From: Arvind Yadav <arvind.yadav.cs@...il.com>
To: b.reynal@...tualopensystems.com, alex.williamson@...hat.com
Cc: linux-kernel@...r.kernel.org, kvm@...r.kernel.org
Subject: [PATCH] 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@...il.com>
---
drivers/vfio/platform/vfio_amba.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/vfio/platform/vfio_amba.c b/drivers/vfio/platform/vfio_amba.c
index 31372fb..62dfbfe 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 },
};
--
2.7.4
Powered by blists - more mailing lists