[PATCH V6 3/5] drm/bridge: it66121: Sort the compatibles

From: Nishanth Menon

Date: Wed Oct 29 2025 - 11:06:56 EST


Keep the compatibles sorted alpha-numerically.

Signed-off-by: Nishanth Menon <nm@xxxxxx>
Reviewed-by: Tomi Valkeinen <tomi.valkeinen@xxxxxxxxxxxxxxxx>
---
Changes since V5:
* Picked Tomi's Ack

V5: https://lore.kernel.org/all/20250827202354.2017972-4-nm@xxxxxx/
V4: https://lore.kernel.org/all/20250819130807.3322536-4-nm@xxxxxx/

drivers/gpu/drm/bridge/ite-it66121.c | 6 +++---
1 file 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);
--
2.47.0