summaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/tmp103.c
diff options
context:
space:
mode:
authorGuenter Roeck2019-04-04 15:28:34 +0200
committerGuenter Roeck2019-04-16 02:19:53 +0200
commit20894216d8b2217b4367bfe169b620b24cbad22f (patch)
tree5ce4363d5cbe4000d03fa896ca58eb879cdbee33 /drivers/hwmon/tmp103.c
parenthwmon: (tmp102) Fix build warning (diff)
downloadkernel-qcow2-linux-20894216d8b2217b4367bfe169b620b24cbad22f.tar.gz
kernel-qcow2-linux-20894216d8b2217b4367bfe169b620b24cbad22f.tar.xz
kernel-qcow2-linux-20894216d8b2217b4367bfe169b620b24cbad22f.zip
hwmon: (tmp103) Fix build warning
If CONFIG_OF is not enabled, the following build warning is observed. drivers/hwmon/tmp103.c:173:34: warning: ‘tmp103_of_match’ defined but not used Marking tmp103_of_match as __maybe_unused fixes the problem. Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/tmp103.c')
-rw-r--r--drivers/hwmon/tmp103.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/tmp103.c b/drivers/hwmon/tmp103.c
index bda0fdc1eb53..a91726d33da8 100644
--- a/drivers/hwmon/tmp103.c
+++ b/drivers/hwmon/tmp103.c
@@ -170,7 +170,7 @@ static const struct i2c_device_id tmp103_id[] = {
};
MODULE_DEVICE_TABLE(i2c, tmp103_id);
-static const struct of_device_id tmp103_of_match[] = {
+static const struct of_device_id __maybe_unused tmp103_of_match[] = {
{ .compatible = "ti,tmp103" },
{ },
};