diff options
author | Guenter Roeck <linux@roeck-us.net> | 2019-04-04 09:28:34 -0400 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2019-04-15 20:19:53 -0400 |
commit | 20894216d8b2217b4367bfe169b620b24cbad22f (patch) | |
tree | 5ce4363d5cbe4000d03fa896ca58eb879cdbee33 | |
parent | 07af9a4a6d151821f2697ca7397deb8a6f2bed5e (diff) |
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>
-rw-r--r-- | drivers/hwmon/tmp103.c | 2 |
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[] = { | |||
170 | }; | 170 | }; |
171 | MODULE_DEVICE_TABLE(i2c, tmp103_id); | 171 | MODULE_DEVICE_TABLE(i2c, tmp103_id); |
172 | 172 | ||
173 | static const struct of_device_id tmp103_of_match[] = { | 173 | static const struct of_device_id __maybe_unused tmp103_of_match[] = { |
174 | { .compatible = "ti,tmp103" }, | 174 | { .compatible = "ti,tmp103" }, |
175 | { }, | 175 | { }, |
176 | }; | 176 | }; |