From: Jingoo Han Date: Wed, 7 May 2014 08:09:12 +0000 (+0900) Subject: regulator: vexpress: Make of_device_id array const X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=1439afd8dba5ae552c439309286e54ffd3a97abc;p=deliverable%2Flinux.git regulator: vexpress: Make of_device_id array const Make of_device_id array const, because all OF functions handle it as const. Signed-off-by: Jingoo Han Acked-by: Pawel Moll Signed-off-by: Mark Brown --- diff --git a/drivers/regulator/vexpress.c b/drivers/regulator/vexpress.c index f3ae28a7e663..147ecc7c11bf 100644 --- a/drivers/regulator/vexpress.c +++ b/drivers/regulator/vexpress.c @@ -123,7 +123,7 @@ static int vexpress_regulator_remove(struct platform_device *pdev) return 0; } -static struct of_device_id vexpress_regulator_of_match[] = { +static const struct of_device_id vexpress_regulator_of_match[] = { { .compatible = "arm,vexpress-volt", }, { } };