summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNishanth Menon <nm@ti.com>2025-10-29 18:06:34 +0300
committerNeil Armstrong <neil.armstrong@linaro.org>2025-11-21 17:48:47 +0300
commita1df28b5f4d30467b8dabe861f1da324e00313fd (patch)
treea9c15d9cb54eefaf801a2991c75691feb7822f8f
parent1ba36afa667bf14820a9862e18b5d55ee47a67e4 (diff)
downloadlinux-a1df28b5f4d30467b8dabe861f1da324e00313fd.tar.xz
drm/bridge: it66121: Sort the compatibles
Keep the compatibles sorted alpha-numerically. Signed-off-by: Nishanth Menon <nm@ti.com> Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org> Link: https://patch.msgid.link/20251029150636.3118628-4-nm@ti.com
-rw-r--r--drivers/gpu/drm/bridge/ite-it66121.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/bridge/ite-it66121.c b/drivers/gpu/drm/bridge/ite-it66121.c
index 9b8ed2fae2f4..cd74f3966560 100644
--- a/drivers/gpu/drm/bridge/ite-it66121.c
+++ b/drivers/gpu/drm/bridge/ite-it66121.c
@@ -1619,15 +1619,15 @@ static const struct it66121_chip_info it6610_chip_info = {
};
static const struct of_device_id it66121_dt_match[] = {
- { .compatible = "ite,it66121", &it66121_chip_info },
{ .compatible = "ite,it6610", &it6610_chip_info },
+ { .compatible = "ite,it66121", &it66121_chip_info },
{ }
};
MODULE_DEVICE_TABLE(of, it66121_dt_match);
static const struct i2c_device_id it66121_id[] = {
- { "it66121", (kernel_ulong_t) &it66121_chip_info },
- { "it6610", (kernel_ulong_t) &it6610_chip_info },
+ { "it6610", (kernel_ulong_t)&it6610_chip_info },
+ { "it66121", (kernel_ulong_t)&it66121_chip_info },
{ }
};
MODULE_DEVICE_TABLE(i2c, it66121_id);