projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd8eb08
)
drm/panel: tpg110: Silent no spi_device_id warning
author
Wei Yongjun
<weiyongjun1@huawei.com>
Thu, 15 Sep 2022 16:34:31 +0000
(16:34 +0000)
committer
Linus Walleij
<linus.walleij@linaro.org>
Mon, 3 Oct 2022 19:49:50 +0000
(21:49 +0200)
Add spi_device_id entries to silent following SPI warning:
SPI driver tpo-tpg110-panel has no spi_device_id for tpo,tpg110
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Link:
https://patchwork.freedesktop.org/patch/msgid/20220915163431.2519736-1-weiyongjun@huaweicloud.com
drivers/gpu/drm/panel/panel-tpo-tpg110.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/panel/panel-tpo-tpg110.c
b/drivers/gpu/drm/panel/panel-tpo-tpg110.c
index 0b1f5a11a055417df8e9c7c1fca4ea2070921944..845304435e23563277bbb696ee0d86211341e1ea 100644
(file)
--- a/
drivers/gpu/drm/panel/panel-tpo-tpg110.c
+++ b/
drivers/gpu/drm/panel/panel-tpo-tpg110.c
@@
-463,9
+463,16
@@
static const struct of_device_id tpg110_match[] = {
};
MODULE_DEVICE_TABLE(of, tpg110_match);
+static const struct spi_device_id tpg110_ids[] = {
+ { "tpg110" },
+ { },
+};
+MODULE_DEVICE_TABLE(spi, tpg110_ids);
+
static struct spi_driver tpg110_driver = {
.probe = tpg110_probe,
.remove = tpg110_remove,
+ .id_table = tpg110_ids,
.driver = {
.name = "tpo-tpg110-panel",
.of_match_table = tpg110_match,