aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Torokhov <dmitry.torokhov@gmail.com>2020-12-18 10:01:33 -0800
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2020-12-18 10:04:34 -0800
commit6d2ad82fece2f5adcafe77252614fcf7211dec28 (patch)
tree092dfcf919a90d8849e5b6bed85beee63cd81a84
parentInput: raydium_ts_i2c - do not send zero length (diff)
downloadlinux-dev-6d2ad82fece2f5adcafe77252614fcf7211dec28.tar.xz
linux-dev-6d2ad82fece2f5adcafe77252614fcf7211dec28.zip
Input: da7280 - protect OF match table with CONFIG_OF
The OF match table is only used when OF is enabled. Fixes: cd3f609823a5 ("Input: new da7280 haptic driver") Reported-by: kernel test robot <lkp@intel.com> Acked-by: Roy Im <roy.im.opensource@diasemi.com> Link: https://lore.kernel.org/r/X9xRLVPt9eBi0CT6@google.com Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r--drivers/input/misc/da7280.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/input/misc/da7280.c b/drivers/input/misc/da7280.c
index 2f698a8c1d65..b08610d6e575 100644
--- a/drivers/input/misc/da7280.c
+++ b/drivers/input/misc/da7280.c
@@ -1300,11 +1300,13 @@ static int __maybe_unused da7280_resume(struct device *dev)
return retval;
}
+#ifdef CONFIG_OF
static const struct of_device_id da7280_of_match[] = {
{ .compatible = "dlg,da7280", },
{ }
};
MODULE_DEVICE_TABLE(of, da7280_of_match);
+#endif
static const struct i2c_device_id da7280_i2c_id[] = {
{ "da7280", },