aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Walleij <[email protected]>2024-03-06 08:54:25 +0100
committerLinus Walleij <[email protected]>2024-03-06 08:56:24 +0100
commit52279c3d50d964c646692c42a0db87ef7bb451cc (patch)
treed5609b06bb92817549ca6a6e555010c8b7835e48
parent3ded216936392775d17bb22fdc480a48eb549961 (diff)
pinctrl: aw9523: Add proper terminator
The of_device_id array needs to be terminated with a NULL entry. Reported-by: kernel test robot <[email protected]> Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/ Signed-off-by: Linus Walleij <[email protected]> Link: https://lore.kernel.org/r/[email protected]
-rw-r--r--drivers/pinctrl/pinctrl-aw9523.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pinctrl/pinctrl-aw9523.c b/drivers/pinctrl/pinctrl-aw9523.c
index 3b35ef197103..4edd371c469f 100644
--- a/drivers/pinctrl/pinctrl-aw9523.c
+++ b/drivers/pinctrl/pinctrl-aw9523.c
@@ -1099,6 +1099,7 @@ MODULE_DEVICE_TABLE(i2c, aw9523_i2c_id_table);
static const struct of_device_id of_aw9523_i2c_match[] = {
{ .compatible = "awinic,aw9523-pinctrl", },
+ { }
};
MODULE_DEVICE_TABLE(of, of_aw9523_i2c_match);