From: Jingoo Han Date: Wed, 7 May 2014 08:29:02 +0000 (+0900) Subject: hwmon: (iio_hwmon) Make of_device_id array const X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=cfe03d641ec294bfcbba23d32accfdf0db51aa8c;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git hwmon: (iio_hwmon) 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 Signed-off-by: Guenter Roeck --- diff --git a/drivers/hwmon/iio_hwmon.c b/drivers/hwmon/iio_hwmon.c index 9fbb1b1fdff3..14c82daab019 100644 --- a/drivers/hwmon/iio_hwmon.c +++ b/drivers/hwmon/iio_hwmon.c @@ -163,7 +163,7 @@ static int iio_hwmon_remove(struct platform_device *pdev) return 0; } -static struct of_device_id iio_hwmon_of_match[] = { +static const struct of_device_id iio_hwmon_of_match[] = { { .compatible = "iio-hwmon", }, { } };