aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <krzk@kernel.org>2020-11-20 17:21:33 +0100
committerLee Jones <lee.jones@linaro.org>2020-11-27 08:02:52 +0000
commite73fd3f265f84a22e93476db2498a4cd4dd255c5 (patch)
tree75094da11cbc7d326cb7a8034053e915dbe9259c /drivers/mfd
parentmfd: axp20x: Skip of_device_id table when !CONFIG_OF (diff)
downloadlinux-dev-e73fd3f265f84a22e93476db2498a4cd4dd255c5.tar.xz
linux-dev-e73fd3f265f84a22e93476db2498a4cd4dd255c5.zip
mfd: twl6030: Mark of_device_id table as maybe unused
The driver references of_device_id table via of_match_device() so it will be unused for !CONFIG_OF builds: drivers/mfd/twl6030-irq.c:359:34: warning: ‘twl6030_of_match’ defined but not used [-Wunused-const-variable=] Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r--drivers/mfd/twl6030-irq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/twl6030-irq.c b/drivers/mfd/twl6030-irq.c
index aff2dfbf3bf9..97af6c2a6007 100644
--- a/drivers/mfd/twl6030-irq.c
+++ b/drivers/mfd/twl6030-irq.c
@@ -356,7 +356,7 @@ static const struct irq_domain_ops twl6030_irq_domain_ops = {
.xlate = irq_domain_xlate_onetwocell,
};
-static const struct of_device_id twl6030_of_match[] = {
+static const struct of_device_id twl6030_of_match[] __maybe_unused = {
{.compatible = "ti,twl6030", &twl6030_interrupt_mapping},
{.compatible = "ti,twl6032", &twl6032_interrupt_mapping},
{ },