Commit 417fb50d authored by Arvind Yadav's avatar Arvind Yadav Committed by Alex Williamson
Browse files

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: default avatarArvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: default avatarAlex Williamson <alex.williamson@redhat.com>
parent 6586b561
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 },
};