From: Nishanth Menon Date: Wed, 29 Oct 2025 15:06:34 +0000 (-0500) Subject: drm/bridge: it66121: Sort the compatibles X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a1df28b5f4d30467b8dabe861f1da324e00313fd;p=thirdparty%2Fkernel%2Flinux.git drm/bridge: it66121: Sort the compatibles Keep the compatibles sorted alpha-numerically. Signed-off-by: Nishanth Menon Reviewed-by: Tomi Valkeinen Signed-off-by: Neil Armstrong Link: https://patch.msgid.link/20251029150636.3118628-4-nm@ti.com --- diff --git a/drivers/gpu/drm/bridge/ite-it66121.c b/drivers/gpu/drm/bridge/ite-it66121.c index 9b8ed2fae2f4e..cd74f39665607 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);