]> Gentwo Git Trees - linux/.git/commitdiff
drm/bridge: it66121: Sort the compatibles
authorNishanth Menon <nm@ti.com>
Wed, 29 Oct 2025 15:06:34 +0000 (10:06 -0500)
committerNeil Armstrong <neil.armstrong@linaro.org>
Fri, 21 Nov 2025 14:48:47 +0000 (15:48 +0100)
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
drivers/gpu/drm/bridge/ite-it66121.c

index 9b8ed2fae2f4ed3d5d06c9617bcaf45104a6f507..cd74f39665607435a5782685ba2dc8e7ed33f0df 100644 (file)
@@ -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);