aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/ina209.c
diff options
context:
space:
mode:
authorGuenter Roeck <linux@roeck-us.net>2019-04-04 06:41:19 -0700
committerGuenter Roeck <linux@roeck-us.net>2019-04-15 17:19:53 -0700
commit32c2d40252454e539b91d37776869ed69c23b2e8 (patch)
tree84b8d0600316e712fc93edf6a16921ff92f78011 /drivers/hwmon/ina209.c
parenthwmon: (lm75) Fix build warning (diff)
downloadlinux-dev-32c2d40252454e539b91d37776869ed69c23b2e8.tar.xz
linux-dev-32c2d40252454e539b91d37776869ed69c23b2e8.zip
hwmon: (ina209) Fix build warning
If CONFIG_OF is not enabled, the following build warning is observed. drivers/hwmon/ina209.c:590:34: warning: ‘ina209_of_match’ defined but not used Mark ina209_of_match as __maybe_unused to fix the problem. Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/ina209.c')
-rw-r--r--drivers/hwmon/ina209.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/ina209.c b/drivers/hwmon/ina209.c
index e3854463db84..6a4ec2f2ddb2 100644
--- a/drivers/hwmon/ina209.c
+++ b/drivers/hwmon/ina209.c
@@ -587,7 +587,7 @@ static const struct i2c_device_id ina209_id[] = {
};
MODULE_DEVICE_TABLE(i2c, ina209_id);
-static const struct of_device_id ina209_of_match[] = {
+static const struct of_device_id __maybe_unused ina209_of_match[] = {
{ .compatible = "ti,ina209" },
{ },
};